text
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
{% extends 'base.html' %} {% block content %} <a href="https://github.com/davidwilemski/openrunlog"><img style="position: absolute; top: 40px; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a> <div class="jumbotron"> <div class="container"> <div class="page-header"><h1>Welcome to Open Run Log</h1><small>A fast, easy, and free way to record your running.</small></div> <p> Open Run Log will always be free to use and focuses on making sure you own your data while providing great tools to track and analyze your progress. </p> <small> Open Run Log is also 100% Open Source software. <a href="https://github.com/davidwilemski/openrunlog">Fork the code on Github!</a> </small> <p> <a href="/login" class="btn btn-primary btn-lg">Login</a> or <a href="/register" class="btn btn-primary btn-lg">Register</a> </p> </div> </div> {% end %}
JsonChiu/openrunlog
openrunlog/templates/home.html
HTML
bsd-2-clause
1,012
<h1>Servo Test</h1> <script src="servotest.js"></script> <button id="button1" onclick="this.innerHTML = 'Thanks!';">Click Me</button> <a href="foo.html">Try some foo!</a>
modulexcite/dom.js
servo/servotest.html
HTML
bsd-2-clause
171
{% extends "rest_framework/base.html" %} {% load i18n %} {% block request_forms %} {{ block.super }} {% if includes_form %} <button style="float: right; margin-right: 10px" data-toggle="modal" data-target="#includesModal" class="btn btn-default"> <span class="glyphicon glyphicon-wrench" aria-hidden="true"></span> {% trans "JSON:API includes" %} </button> {% endif %} {% endblock request_forms %} {% block script %} {{ block.super }} {% if includes_form %} {{ includes_form }} {% endif %} {% endblock script %}
django-json-api/rest_framework_ember
rest_framework_json_api/templates/rest_framework_json_api/api.html
HTML
bsd-2-clause
550
<!DOCTYPE html> <!-- Copyright (c) 2015 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <link rel="import" href="/tracing/extras/chrome/cc/input_latency_async_slice.html"> <link rel="import" href="/tracing/extras/chrome/chrome_test_utils.html"> <link rel="import" href="/tracing/extras/rail/ir_verifier.html"> <script> 'use strict'; tr.b.unittest.testSuite(function() { var INPUT_TYPE = tr.e.cc.INPUT_EVENT_TYPE_NAMES; var audits = tr.e.audits; var IRVerifier = tr.e.rail.IRVerifier; function addFrameEventForInput(model, event) { var frame = audits.addFrameEvent(model, {start: event.start, end: event.end, isTopLevel: true}); model.flowEvents.push(tr.c.test_utils.newFlowEventEx({ id: event.id, start: event.start, end: event.end, startSlice: frame, endSlice: frame })); } test('empty', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { }; verifier.expectedIRs = [ ]; verifier.verify(); }); test('slowMouseMoveResponses', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.MOUSE_DOWN, {start: 0, end: 10}); var mouseMove = audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 10, end: 20, id: '0x100'}); addFrameEventForInput(model, mouseMove); mouseMove = audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 70, end: 80, id: '0x101'}); addFrameEventForInput(model, mouseMove); mouseMove = audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 130, end: 140, id: '0x102'}); addFrameEventForInput(model, mouseMove); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 10, eventCount: 0}, {title: 'Response', name: 'Mouse', start: 10, end: 20, eventCount: 4}, {title: 'Idle', start: 20, end: 70, eventCount: 0}, {title: 'Response', name: 'Mouse', start: 70, end: 80, eventCount: 3}, {title: 'Idle', start: 80, end: 130, eventCount: 0}, {title: 'Response', name: 'Mouse', start: 130, end: 140, eventCount: 3} ]; verifier.verify(); }); test('MouseEventResponses', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { var mouseDown = audits.addInputEvent(model, INPUT_TYPE.MOUSE_DOWN, {start: 0, end: 50, id: '0x100'}); addFrameEventForInput(model, mouseDown); var mouseUp = audits.addInputEvent(model, INPUT_TYPE.MOUSE_UP, {start: 50, end: 100, id: '0x101'}); addFrameEventForInput(model, mouseUp); var mouseMove = audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 200, end: 250, id: '0x102'}); addFrameEventForInput(model, mouseMove); }; verifier.expectedIRs = [ {title: 'Response', name: 'Mouse', start: 0, end: 50, eventCount: 3}, {title: 'Response', name: 'Mouse', start: 50, end: 100, eventCount: 3}, {title: 'Idle', start: 100, end: 200, eventCount: 0}, {title: 'Response', name: 'Mouse', start: 200, end: 250, eventCount: 3} ]; verifier.verify(); }); test('MouseEventsIgnored', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 0, end: 50}); audits.addInputEvent(model, INPUT_TYPE.MOUSE_DOWN, {start: 50, end: 100}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 100, eventCount: 0} ]; verifier.verify(); }); test('unassociatedEvents', function() { // Unassociated ThreadSlices that start during an Idle should be associated // with it. Expect the Idle IR to have 2 associated events: both of the // ThreadSlices in the model. var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { var start = tr.c.test_utils.newSliceEx( {title: 'model start', start: 0, end: 1, type: tr.model.ThreadSlice}); start.isTopLevel = true; model.browserMain.sliceGroup.pushSlice(start); var end = tr.c.test_utils.newSliceEx( {title: 'model end', start: 9, end: 10, type: tr.model.ThreadSlice}); end.isTopLevel = true; model.browserMain.sliceGroup.pushSlice(end); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 10, eventCount: 2} ]; verifier.verify(); }); test('FlingFlingFling', function() { // This trace gave me so many different kinds of trouble that I'm just going // to copy it straight in here, without trying to clarify it at all. // measurmt-traces/mobile/cnet_fling_up_fling_down_motox_2013.json var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addFrameEvent(model, {start: 0, end: 10}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 919, end: 998}); audits.addInputEvent(model, INPUT_TYPE.FLING_CANCEL, {start: 919, end: 1001}); audits.addInputEvent(model, INPUT_TYPE.TAP_DOWN, {start: 919, end: 1001}); audits.addInputEvent(model, INPUT_TYPE.TAP_CANCEL, {start: 974, end: 1020}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_BEGIN, {start: 974, end: 1020}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 974, end: 1040}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 974, end: 1054}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 990, end: 1021}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 990, end: 1052}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1006, end: 1021}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1022, end: 1036}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1022, end: 1052}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1038, end: 1049}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1038, end: 1068}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_END, {start: 1046, end: 1050}); audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 1046, end: 1077}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 1432, end: 2238}); audits.addInputEvent(model, INPUT_TYPE.FLING_CANCEL, {start: 1432, end: 2241}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1516, end: 2605}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_BEGIN, {start: 1532, end: 2274}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1532, end: 2294}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1549, end: 2310}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_END, {start: 1627, end: 2275}); audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 1627, end: 2310}); audits.addFrameEvent(model, {start: 2990, end: 3000}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 919, eventCount: 0}, {title: 'Response', name: 'Scroll,Tap,Touch', start: 919, end: 1054, eventCount: 6}, {title: 'Animation', name: 'Scroll,Touch', start: 1054, end: 1068, eventCount: 8}, {title: 'Animation', name: 'Fling', start: 1054, end: 1432, eventCount: 2}, {title: 'Response', name: 'Scroll,Touch', start: 1432, end: 2605, eventCount: 5}, {title: 'Animation', name: 'Scroll', start: 1549, end: 2310, eventCount: 1}, {title: 'Animation', name: 'Fling', start: 2605, end: 3000, eventCount: 1} ]; verifier.verify(); }); test('keyboardEvents', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.KEY_DOWN_RAW, {start: 0, end: 45}); audits.addInputEvent(model, INPUT_TYPE.CHAR, {start: 10, end: 50}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Keyboard', start: 0, end: 50, eventCount: 2} ]; verifier.verify(); }); test('mouseResponses', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.CLICK, {start: 0, end: 100}); audits.addInputEvent(model, INPUT_TYPE.CONTEXT_MENU, {start: 200, end: 300}); audits.addInputEvent(model, INPUT_TYPE.MOUSE_WHEEL, {start: 400, end: 500}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Mouse', start: 0, end: 100, eventCount: 1}, {title: 'Idle', start: 100, end: 200, eventCount: 0}, {title: 'Response', name: 'Mouse', start: 200, end: 300, eventCount: 1}, {title: 'Idle', start: 300, end: 400, eventCount: 0}, {title: 'Response', name: 'MouseWheel', start: 400, end: 500, eventCount: 1} ]; verifier.verify(); }); test('mouseWheelAnimation', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.MOUSE_WHEEL, {start: 0, end: 20}); audits.addInputEvent(model, INPUT_TYPE.MOUSE_WHEEL, {start: 16, end: 36}); audits.addInputEvent(model, INPUT_TYPE.MOUSE_WHEEL, {start: 55, end: 75}); // This threshold uses both events' start times, not end...start. audits.addInputEvent(model, INPUT_TYPE.MOUSE_WHEEL, {start: 100, end: 150}); audits.addInputEvent(model, INPUT_TYPE.MOUSE_WHEEL, {start: 141, end: 191}); audits.addInputEvent(model, INPUT_TYPE.MOUSE_WHEEL, {start: 182, end: 200}); }; verifier.expectedIRs = [ {title: 'Response', name: 'MouseWheel', start: 0, end: 20, eventCount: 1}, {title: 'Animation', name: 'MouseWheel', start: 20, end: 75, eventCount: 2}, {title: 'Idle', start: 75, end: 100, eventCount: 0}, {title: 'Response', name: 'MouseWheel', start: 100, end: 150, eventCount: 1}, {title: 'Response', name: 'MouseWheel', start: 141, end: 191, eventCount: 1}, {title: 'Response', name: 'MouseWheel', start: 182, end: 200, eventCount: 1} ]; verifier.verify(); }); test('mouseDownUpResponse', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.MOUSE_DOWN, {start: 0, end: 100}); audits.addInputEvent(model, INPUT_TYPE.MOUSE_UP, {start: 200, end: 210}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 200, eventCount: 0}, {title: 'Response', name: 'Mouse', start: 200, end: 210, eventCount: 2} ]; verifier.verify(); }); test('ignoreLoneMouseMoves', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 0, end: 100}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 100, eventCount: 0} ]; verifier.verify(); }); test('mouseDrags', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.MOUSE_DOWN, {start: 0, end: 100}); var mouseMove = audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 200, end: 215}); addFrameEventForInput(model, mouseMove); mouseMove = audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 210, end: 220}); addFrameEventForInput(model, mouseMove); mouseMove = audits.addInputEvent(model, INPUT_TYPE.MOUSE_MOVE, {start: 221, end: 240}); addFrameEventForInput(model, mouseMove); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 200, eventCount: 0}, {title: 'Response', name: 'Mouse', start: 200, end: 215, eventCount: 4}, {title: 'Animation', name: 'Mouse', start: 215, end: 240, eventCount: 6} ]; verifier.verify(); }); test('twoScrollsNoFling', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.SCROLL_BEGIN, {start: 0, end: 100}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 20, end: 100}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 40, end: 100}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 60, end: 150}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 70, end: 150}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_END, {start: 80, end: 150}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_BEGIN, {start: 300, end: 400}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 320, end: 400}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 330, end: 450}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 340, end: 450}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 350, end: 500}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_END, {start: 360, end: 500}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Scroll', start: 0, end: 100, eventCount: 2}, {title: 'Animation', name: 'Scroll', start: 100, end: 150, eventCount: 4}, {title: 'Idle', start: 150, end: 300, eventCount: 0}, {title: 'Response', name: 'Scroll', start: 300, end: 400, eventCount: 2}, {title: 'Animation', name: 'Scroll', start: 400, end: 500, eventCount: 4} ]; verifier.verify(); }); test('CSSAnimations', function() { // CSS Animations happen on the renderer process, not the browser process. // They are merged if they overlap. // They are merged with other kinds of animations. var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addEvent(model.rendererMain, { title: 'Animation', start: 0, end: 100}); audits.addEvent(model.rendererMain, { title: 'Animation', start: 99, end: 200}); audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 150, end: 180}); audits.addFrameEvent(model, {start: 290, end: 300}); }; verifier.expectedIRs = [ {title: 'Animation', name: 'CSS', start: 0, end: 200, eventCount: 2}, {title: 'Animation', name: 'Fling', start: 150, end: 300, eventCount: 1} ]; verifier.verify(); }); test('flingThatIsntstopped', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 32, end: 100}); audits.addFlingAnimationEvent(model, {start: 38, end: 200}); audits.addFrameEvent(model, {start: 290, end: 300}); }; verifier.expectedIRs = [ {title: 'Animation', name: 'Fling', start: 32, end: 200, eventCount: 2}, {title: 'Idle', start: 200, end: 300, eventCount: 0} ]; verifier.verify(); }); test('flingThatIsStopped', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 32, end: 100}); audits.addInputEvent(model, INPUT_TYPE.FLING_CANCEL, {start: 105, end: 150}); }; verifier.expectedIRs = [ {title: 'Animation', name: 'Fling', start: 32, end: 105, eventCount: 2}, {title: 'Idle', start: 105, end: 150, eventCount: 0} ]; verifier.verify(); }); test('FlingFling', function() { // measurmt-traces/mobile/facebook_obama_scroll_dialog_box.html var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 0, end: 30}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 100, end: 130}); audits.addInputEvent(model, INPUT_TYPE.FLING_CANCEL, {start: 100, end: 130}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 110, end: 140}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 170, end: 180}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_END, {start: 200, end: 210}); audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 200, end: 220}); audits.addFrameEvent(model, {start: 230, end: 240}); }; verifier.expectedIRs = [ {title: 'Animation', name: 'Fling', start: 0, end: 100, eventCount: 2}, {title: 'Response', name: 'Touch', start: 100, end: 140, eventCount: 2}, {title: 'Animation', name: 'Touch', start: 140, end: 210, eventCount: 2}, {title: 'Animation', name: 'Fling', start: 200, end: 240, eventCount: 1} ]; verifier.verify(); }); test('Load', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addCommitLoadEvent(model, {start: 0, end: 10}); audits.addFrameEvent(model, {start: 11, end: 20}); }; verifier.expectedIRs = [ {title: 'Load', name: 'Succeeded', start: 0, end: 20, eventCount: 2} ]; verifier.verify(); }); test('LoadFailed', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addStartProvisionalLoadEvent(model, {start: 0, end: 10}); audits.addFailProvisionalLoadEvent(model, {start: 11, end: 20}); }; verifier.expectedIRs = [ {title: 'Load', name: 'Failed', start: 0, end: 20, eventCount: 2} ]; verifier.verify(); }); test('LoadMainRunner', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addMainRunnerEvent(model, {start: 0, end: 10}); audits.addFrameEvent(model, {start: 11, end: 20}); }; verifier.expectedIRs = [ {title: 'Load', name: 'Startup', start: 0, end: 20, eventCount: 2} ]; verifier.verify(); }); test('totalIdle', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addFrameEvent(model, {start: 0, end: 10}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 10, eventCount: 0} ]; verifier.verify(); }); test('MultipleIdles', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addFrameEvent(model, {start: 0, end: 1}); audits.addCommitLoadEvent(model, {start: 1, end: 2}); audits.addFrameEvent(model, {start: 3, end: 4}); audits.addCommitLoadEvent(model, {start: 5, end: 6}); audits.addFrameEvent(model, {start: 7, end: 8}); audits.addCommitLoadEvent(model, {start: 9, end: 10}); audits.addFrameEvent(model, {start: 11, end: 12}); audits.addFrameEvent(model, {start: 12, end: 13}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 1, eventCount: 0}, {title: 'Load', name: 'Succeeded', start: 1, end: 4, eventCount: 2}, {title: 'Idle', start: 4, end: 5, eventCount: 0}, {title: 'Load', name: 'Succeeded', start: 5, end: 8, eventCount: 2}, {title: 'Idle', start: 8, end: 9, eventCount: 0}, {title: 'Load', name: 'Succeeded', start: 9, end: 12, eventCount: 2}, {title: 'Idle', start: 12, end: 13, eventCount: 0} ]; verifier.verify(); }); test('TouchStartTouchEndTap', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 0, end: 10}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_END, {start: 200, end: 210}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Touch', start: 0, end: 210, eventCount: 2} ]; verifier.verify(); }); test('TouchMoveResponseAnimation', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 0, end: 10}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 50, end: 100}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 70, end: 150}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_END, {start: 200, end: 300}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Touch', start: 0, end: 100, eventCount: 2}, {title: 'Animation', name: 'Touch', start: 100, end: 300, eventCount: 2} ]; verifier.verify(); }); test('TapEvents', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.TAP, {start: 0, end: 50}); audits.addInputEvent(model, INPUT_TYPE.TAP_DOWN, {start: 300, end: 310}); audits.addInputEvent(model, INPUT_TYPE.TAP, {start: 320, end: 350}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Tap', start: 0, end: 50, eventCount: 1}, {title: 'Idle', start: 50, end: 300, eventCount: 0}, {title: 'Response', name: 'Tap', start: 300, end: 350, eventCount: 2} ]; verifier.verify(); }); test('TapAndTapCancelResponses', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.TAP_DOWN, {start: 0, end: 100}); audits.addInputEvent(model, INPUT_TYPE.TAP_CANCEL, {start: 300, end: 350}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Tap', start: 0, end: 100, eventCount: 1}, {title: 'Idle', start: 100, end: 300, eventCount: 0}, {title: 'Response', name: 'Tap', start: 300, end: 350, eventCount: 1} ]; verifier.verify(); }); test('TapCancelResponse', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.TAP_DOWN, {start: 0, end: 100}); audits.addInputEvent(model, INPUT_TYPE.TAP_CANCEL, {start: 150, end: 200}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Tap', start: 0, end: 200, eventCount: 2} ]; verifier.verify(); }); test('PinchResponseAnimation', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addFrameEvent(model, {start: 0, end: 10}); audits.addInputEvent(model, INPUT_TYPE.PINCH_BEGIN, {start: 100, end: 150}); audits.addInputEvent(model, INPUT_TYPE.PINCH_UPDATE, {start: 130, end: 160}); audits.addInputEvent(model, INPUT_TYPE.PINCH_UPDATE, {start: 140, end: 200}); audits.addInputEvent(model, INPUT_TYPE.PINCH_UPDATE, {start: 150, end: 205}); audits.addInputEvent(model, INPUT_TYPE.PINCH_UPDATE, {start: 210, end: 220}); // pause > 200ms audits.addInputEvent(model, INPUT_TYPE.PINCH_UPDATE, {start: 421, end: 470}); audits.addInputEvent(model, INPUT_TYPE.PINCH_END, {start: 460, end: 500}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 100, eventCount: 0}, {title: 'Response', name: 'Pinch', start: 100, end: 160, eventCount: 2}, {title: 'Animation', name: 'Pinch', start: 160, end: 220, eventCount: 3}, {title: 'Idle', start: 220, end: 421, eventCount: 0}, {title: 'Animation', name: 'Pinch', start: 421, end: 500, eventCount: 2} ]; verifier.verify(); }); test('TapThenScroll', function() { // measurmt-traces/mobile/google_io_instrument_strumming.json var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 0, end: 20}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_END, {start: 40, end: 100}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 50, end: 120}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 80, end: 150}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 180, end: 200}); }; verifier.expectedIRs = [ {title: 'Response', name: 'Touch', start: 0, end: 100, eventCount: 2}, {title: 'Response', name: 'Touch', start: 50, end: 150, eventCount: 2}, {title: 'Animation', name: 'Touch', start: 150, end: 200, eventCount: 1} ]; verifier.verify(); }); test('PinchFlingTapTouchEventsOverlap', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addFrameEvent(model, {start: 0, end: 10}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 20, end: 50}); audits.addInputEvent(model, INPUT_TYPE.TAP_DOWN, {start: 20, end: 30}); audits.addInputEvent(model, INPUT_TYPE.FLING_CANCEL, {start: 20, end: 50}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 60, end: 100}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 60, end: 110}); audits.addInputEvent(model, INPUT_TYPE.PINCH_BEGIN, {start: 60, end: 100}); audits.addInputEvent(model, INPUT_TYPE.TAP_CANCEL, {start: 65, end: 75}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 70, end: 100}); audits.addInputEvent(model, INPUT_TYPE.PINCH_UPDATE, {start: 70, end: 100}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 75, end: 100}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 80, end: 100}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 85, end: 100}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_BEGIN, {start: 75, end: 100}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 150, end: 200}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 150, end: 200}); audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 180, end: 210}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_END, {start: 190, end: 210}); audits.addFrameEvent(model, {start: 215, end: 220}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 20, eventCount: 0}, {title: 'Response', name:'Pinch,Scroll,Tap,Touch', start: 20, end: 110, eventCount: 9}, {title: 'Animation', name:'Scroll,Touch', start: 110, end: 210, eventCount: 6}, {title: 'Animation', name:'Fling', start: 180, end: 220, eventCount: 1} ]; verifier.verify(); }); test('ScrollThenFling', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 0, end: 40}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 50, end: 100}); audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 80, end: 100}); audits.addFrameEvent(model, {start: 190, end: 200}); }; verifier.expectedIRs = [ {title: 'Animation', name: 'Scroll', start: 0, end: 100, eventCount: 2}, {title: 'Animation', name: 'Fling', start: 80, end: 200, eventCount: 1} ]; verifier.verify(); }); /* This test was generated from /test_data/measurmt-traces/mobile/fling_HN_to_rest.json */ test('fling_HN_to_rest', function() { var verifier = new IRVerifier(); verifier.customizeModelCallback = function(model) { audits.addEvent(model.browserMain, {title: 'model start', start: 0, end: 1}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_START, {start: 1274, end: 1297}); audits.addInputEvent(model, INPUT_TYPE.TAP_DOWN, {start: 1274, end: 1305}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1343, end: 1350}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1359, end: 1366}); audits.addInputEvent(model, INPUT_TYPE.TAP_CANCEL, {start: 1359, end: 1366}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_BEGIN, {start: 1359, end: 1367}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1359, end: 1387}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1375, end: 1385}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1375, end: 1416}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1389, end: 1404}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1389, end: 1429}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1405, end: 1418}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1405, end: 1449}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_MOVE, {start: 1419, end: 1432}); audits.addInputEvent(model, INPUT_TYPE.SCROLL_UPDATE, {start: 1419, end: 1474}); audits.addInputEvent(model, INPUT_TYPE.TOUCH_END, {start: 1427, end: 1435}); audits.addInputEvent(model, INPUT_TYPE.FLING_START, {start: 1427, end: 1474}); audits.addFlingAnimationEvent(model, {start: 1440, end: 2300}); audits.addEvent(model.browserMain, {title: 'model end', start: 3184, end: 3185}); }; verifier.expectedIRs = [ {title: 'Idle', start: 0, end: 1274, eventCount: 0}, {title: 'Response', name: 'Scroll,Tap,Touch', start: 1274, end: 1387, eventCount: 6}, {title: 'Animation', name: 'Scroll,Touch', start: 1387, end: 1474, eventCount: 10}, {title: 'Animation', name: 'Fling', start: 1427, end: 2300, eventCount: 2}, {title: 'Idle', start: 2300, end: 3185, eventCount: 0} ]; verifier.verify(); }); }); </script>
modulexcite/catapult
tracing/tracing/extras/rail/rail_ir_finder_test.html
HTML
bsd-3-clause
30,920
<!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_43) on Tue Aug 06 14:46:47 EDT 2013 --> <TITLE> gov.nih.nci.codegen.validator.transformer.jet Class Hierarchy (caCORE SDK 4.5 API Documentation) </TITLE> <META NAME="date" CONTENT="2013-08-06"> <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="gov.nih.nci.codegen.validator.transformer.jet Class Hierarchy (caCORE SDK 4.5 API Documentation)"; } } </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"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../../gov/nih/nci/codegen/validator/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../../../gov/nih/nci/system/applicationservice/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?gov/nih/nci/codegen/validator/transformer/jet/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.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> Hierarchy For Package gov.nih.nci.codegen.validator.transformer.jet </H2> </CENTER> <DL> <DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../../../overview-tree.html">All Packages</A></DL> <HR> <H2> Class Hierarchy </H2> <UL> <LI TYPE="circle">java.lang.Object<UL> <LI TYPE="circle">gov.nih.nci.codegen.transformer.<A HREF="../../../../../../../gov/nih/nci/codegen/transformer/UMLValidatorJETTransformer.html" title="class in gov.nih.nci.codegen.transformer"><B>UMLValidatorJETTransformer</B></A> (implements gov.nih.nci.codegen.<A HREF="../../../../../../../gov/nih/nci/codegen/Transformer.html" title="interface in gov.nih.nci.codegen">Transformer</A>) <UL> <LI TYPE="circle">gov.nih.nci.codegen.validator.transformer.jet.<A HREF="../../../../../../../gov/nih/nci/codegen/validator/transformer/jet/ValidatorTransformer.html" title="class in gov.nih.nci.codegen.validator.transformer.jet"><B>ValidatorTransformer</B></A></UL> </UL> </UL> <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"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../../gov/nih/nci/codegen/validator/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../../../gov/nih/nci/system/applicationservice/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?gov/nih/nci/codegen/validator/transformer/jet/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.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> This API was generated by the caCORE Software Development Kit (SDK) </BODY> </HTML>
NCIP/cadsr-objectcart
objectCart/software/src/web/docs/system/gov/nih/nci/codegen/validator/transformer/jet/package-tree.html
HTML
bsd-3-clause
7,178
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=0"> <title>评价管理</title> <link href="../AmazeUI-2.4.2/assets/css/admin.css" rel="stylesheet" type="text/css"> <link href="../AmazeUI-2.4.2/assets/css/amazeui.css" rel="stylesheet" type="text/css"> <link href="../css/personal.css" rel="stylesheet" type="text/css"> <link href="../css/cmstyle.css" rel="stylesheet" type="text/css"> <script src="../AmazeUI-2.4.2/assets/js/jquery.min.js"></script> <script src="../AmazeUI-2.4.2/assets/js/amazeui.js"></script> </head> <body> <!--头 --> <header> <article> <div class="mt-logo"> <!--顶部导航条 --> <div class="am-container header"> <ul class="message-l"> <div class="topMessage"> <div class="menu-hd"> <a href="#" target="_top" class="h">亲,请登录</a> <a href="#" target="_top">免费注册</a> </div> </div> </ul> <ul class="message-r"> <div class="topMessage home"> <div class="menu-hd"><a href="#" target="_top" class="h">商城首页</a></div> </div> <div class="topMessage my-shangcheng"> <div class="menu-hd MyShangcheng"><a href="#" target="_top"><i class="am-icon-user am-icon-fw"></i>个人中心</a></div> </div> <div class="topMessage mini-cart"> <div class="menu-hd"><a id="mc-menu-hd" href="#" target="_top"><i class="am-icon-shopping-cart am-icon-fw"></i><span>购物车</span><strong id="J_MiniCartNum" class="h">0</strong></a></div> </div> <div class="topMessage favorite"> <div class="menu-hd"><a href="#" target="_top"><i class="am-icon-heart am-icon-fw"></i><span>收藏夹</span></a></div> </ul> </div> <!--悬浮搜索框--> <div class="nav white"> <div class="logoBig"> <li><img src="../images/logobig.png" /></li> </div> <div class="search-bar pr"> <a name="index_none_header_sysc" href="#"></a> <form> <input id="searchInput" name="index_none_header_sysc" type="text" placeholder="搜索" autocomplete="off"> <input id="ai-topsearch" class="submit am-btn" value="搜索" index="1" type="submit"> </form> </div> </div> <div class="clear"></div> </div> </div> </article> </header> <div class="nav-table"> <div class="long-title"><span class="all-goods">全部分类</span></div> <div class="nav-cont"> <ul> <li class="index"><a href="#">首页</a></li> <li class="qc"><a href="#">闪购</a></li> <li class="qc"><a href="#">限时抢</a></li> <li class="qc"><a href="#">团购</a></li> <li class="qc last"><a href="#">大包装</a></li> </ul> <div class="nav-extra"> <i class="am-icon-user-secret am-icon-md nav-user"></i><b></b>我的福利 <i class="am-icon-angle-right" style="padding-left: 10px;"></i> </div> </div> </div> <b class="line"></b> <div class="center"> <div class="col-main"> <div class="main-wrap"> <div class="user-comment"> <!--标题 --> <div class="am-cf am-padding"> <div class="am-fl am-cf"><strong class="am-text-danger am-text-lg">评价管理</strong> / <small>Manage&nbsp;Comment</small></div> </div> <hr/> <div class="am-tabs am-tabs-d2 am-margin" data-am-tabs> <ul class="am-avg-sm-2 am-tabs-nav am-nav am-nav-tabs"> <li class="am-active"><a href="#tab1">所有评价</a></li> <li><a href="#tab2">有图评价</a></li> </ul> <div class="am-tabs-bd"> <div class="am-tab-panel am-fade am-in am-active" id="tab1"> <div class="comment-main"> <div class="comment-list"> <ul class="item-list"> <div class="comment-top"> <div class="th th-price"> <td class="td-inner">评价</td> </div> <div class="th th-item"> <td class="td-inner">商品</td> </div> </div> <li class="td td-item"> <div class="item-pic"> <a href="#" class="J_MakePoint"> <img src="../images/kouhong.jpg_80x80.jpg" class="itempic"> </a> </div> </li> <li class="td td-comment"> <div class="item-title"> <div class="item-opinion">好评</div> <div class="item-name"> <a href="#"> <p class="item-basic-info">美康粉黛醉美唇膏 持久保湿滋润防水不掉色</p> </a> </div> </div> <div class="item-comment"> 宝贝非常漂亮,超级喜欢!!! 口红颜色很正呐,还有第两支半价,买三支免单一支的活动,下次还要来买。就是物流太慢了,还要我自己去取快递,店家不考虑换个物流么? </div> <div class="item-info"> <div> <p class="info-little"><span>颜色:12#玛瑙</span> <span>包装:裸装</span> </p> <p class="info-time">2015-12-24</p> </div> </div> </li> </ul> </div> </div> </div> <div class="am-tab-panel am-fade" id="tab2"> <div class="comment-main"> <div class="comment-list"> <ul class="item-list"> <div class="comment-top"> <div class="th th-price"> <td class="td-inner">评价</td> </div> <div class="th th-item"> <td class="td-inner">商品</td> </div> </div> <li class="td td-item"> <div class="item-pic"> <a href="#" class="J_MakePoint"> <img src="../images/kouhong.jpg_80x80.jpg" class="itempic"> </a> </div> </li> <li class="td td-comment"> <div class="item-title"> <div class="item-opinion">好评</div> <div class="item-name"> <a href="#"> <p class="item-basic-info">美康粉黛醉美唇膏 持久保湿滋润防水不掉色</p> </a> </div> </div> <div class="item-comment"> 宝贝非常漂亮,超级喜欢!!! 口红颜色很正呐,还有第两支半价,买三支免单一支的活动,下次还要来买。就是物流太慢了,还要我自己去取快递,店家不考虑换个物流么? <div class="filePic"><img src="../images/image.jpg" alt=""></div> </div> <div class="item-info"> <div> <p class="info-little"><span>颜色:12#玛瑙</span> <span>包装:裸装</span> </p> <p class="info-time">2015-12-24</p> </div> </div> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <!--底部--> <div class="footer"> <div class="footer-hd"> <p> <a href="#">恒望科技</a> <b>|</b> <a href="#">商城首页</a> <b>|</b> <a href="#">支付宝</a> <b>|</b> <a href="#">物流</a> </p> </div> <div class="footer-bd"> <p> <a href="#">关于恒望</a> <a href="#">合作伙伴</a> <a href="#">联系我们</a> <a href="#">网站地图</a> <em>© 2015-2025 Hengwang.com 版权所有. 更多模板 <a href="http://www.cssmoban.com/" target="_blank" title="模板之家">模板之家</a> - Collect from <a href="http://www.cssmoban.com/" title="网页模板" target="_blank">网页模板</a></em> </p> </div> </div> </div> <aside class="menu"> <ul> <li class="person active"> <a href="index.html"><i class="am-icon-user"></i>个人中心</a> </li> <li class="person"> <p><i class="am-icon-newspaper-o"></i>个人资料</p> <ul> <li> <a href="information.html">个人信息</a></li> <li> <a href="safety.html">安全设置</a></li> <li> <a href="address.html">地址管理</a></li> <li> <a href="cardlist.html">快捷支付</a></li> </ul> </li> <li class="person"> <p><i class="am-icon-balance-scale"></i>我的交易</p> <ul> <li><a href="order.html">订单管理</a></li> <li> <a href="change.html">退款售后</a></li> <li> <a href="comment.html">评价商品</a></li> </ul> </li> <li class="person"> <p><i class="am-icon-dollar"></i>我的资产</p> <ul> <li> <a href="points.html">我的积分</a></li> <li> <a href="coupon.html">优惠券 </a></li> <li> <a href="bonus.html">红包</a></li> <li> <a href="walletlist.html">账户余额</a></li> <li> <a href="bill.html">账单明细</a></li> </ul> </li> <li class="person"> <p><i class="am-icon-tags"></i>我的收藏</p> <ul> <li> <a href="collection.html">收藏</a></li> <li> <a href="foot.html">足迹</a></li> </ul> </li> <li class="person"> <p><i class="am-icon-qq"></i>在线客服</p> <ul> <li> <a href="consultation.html">商品咨询</a></li> <li> <a href="suggest.html">意见反馈</a></li> <li> <a href="news.html">我的消息</a></li> </ul> </li> </ul> </aside> </div> </body> </html>
wuzhc/WZCSHOP
data/site/theme3/two/person/comment.html
HTML
bsd-3-clause
9,876
<link rel="import" href="iron_swipeable_container_nodart.html"> <script type="application/dart" src="iron_swipeable_container.dart"></script>
dart-archive/polymer_elements
lib/iron_swipeable_container.html
HTML
bsd-3-clause
144
{# Import the theme's layout. #} {% extends "!layout.html" %} {# remove site and page menus #} {%- block sidebartoc %} {% endblock %} {%- block sidebarrel %} {% endblock %} {%- block navbartoc %} {% endblock %} {%- block content %} {{ navBar() }} <div class="container content-container"> {% block body %}{% endblock %} </div> {%- endblock %}
X-DataInitiative/tick
doc/_templates/layout.html
HTML
bsd-3-clause
350
<html > <head ><STYLE TYPE="text/css">@import "../stylesheet.css";</STYLE><title ></title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script language='JavaScript'> function doClick(imageHref) { if (parent.imageFrame != null) parent.imageFrame.location.href = imageHref; } </script></head><table border='0' width='100%' cellpadding='1' cellspacing='0'> <tr > <td colspan='2' class='NavBarCellCommon'> <table border='0' cellpadding='0' cellspacing='3'> <tr align='center' valign='top'> <td class='NavBarCellCommon'> <a href='../overview-summary.html'> <font size='+1' class='NavBarFont1'> <b >Overview</b></font></a>&nbsp;</td><td class='NavBarCellCommon'> <a href='package-summary.html'> <font size='+1' class='NavBarFont1'> <b >Namespace</b></font></a>&nbsp;</td><td class='NavBarCellCommonRev'> <font size='+1' class='NavBarFont1'> <b >Classifier</b></font>&nbsp;</td><td class='NavBarCellCommon'> <font size='+1' class='NavBarFont1'>Tree</font>&nbsp;</td><td class='NavBarCellCommon'> <a href='../index-all.html'> <font size='+1' class='NavBarFont1'> <b >Index</b></font></a>&nbsp;</td><td class='NavBarCellCommon'> <a href='../help-doc.html'> <font size='+1' class='NavBarFont1'> <b >Help</b></font></a>&nbsp;</td></tr></table><td align='right' valign='top' rowspan='3'> <em ></em></td></td></tr><tr > <td class='NavBarCellPrevNext'> <font size='-2'><a href="../OtlTaskControl/TOmniTaskControlList.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">PREV </a> &nbsp;&nbsp;<a href="../OtlTaskControl/globals OtlTaskControl.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">NEXT </a> </font></td><td class='NavBarCellPrevNext'> <font size='-2'> <a href='../index.html' target='_top'> <b >FRAMES</b></a>&nbsp;<a href='../OtlTaskControl/IOmniTaskGroup.html' target='_top'> <b >NO FRAMES</b></a></font></td></tr><tr > <td valign='top' class='NavBarCell3'> <font size='-2'>SUMMARY:&nbsp;INNER&nbsp;|&nbsp;<a href='#field_summary'>FIELD</a>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;DESTR&nbsp;|&nbsp;<a href='#method_summary'>METHOD</a></font></td><td valign='top' class='NavBarCell3'> <font size='-2'>DETAIL:&nbsp;<a href='#field_detail'>FIELD</a>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;DESTR&nbsp;|&nbsp;<a href='#method_detail'>METHOD</a></font></td></tr></table><hr /><h2 > <font size='-1'> <i >Namespace: </i>OtlTaskControl<br /></font><br />Interface IOmniTaskGroup</h2><dl > <dt /><b >All Known Implementing Classes: </b><dd ><a href="../OtlTaskControl/TOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">TOmniTaskGroup</a> </dd></dl><hr /><dl > <dt />public&nbsp;interface <b >IOmniTaskGroup</b></dl><p /><dl > <dt /><b >Persistent</b><dd >False</dd></dl><hr /><p /><a name='field_summary'/><table border='1' cellpadding='3' cellspacing='0' width='100%'> <tr class='TableHeaderStyle'> <td colspan='2'> <font size='+2'> <b >Property Summary</b></font></td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public&nbsp; <b ><a href="../OtlTaskControl/IOmniTaskControlList.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControlList</a> </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#Tasks'>Tasks</a></b></code><br />  </td></tr></table> <p /><a name='method_summary'/><table border='1' cellpadding='3' cellspacing='0' width='100%'> <tr class='TableHeaderStyle'> <td colspan='2'> <font size='+2'> <b >Method Summary</b></font></td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#Add(IOmniTaskControl)'>Add</a></b>(taskControl: <a href="../OtlTaskControl/IOmniTaskControl.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControl</a> )</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function <a href="../OtlTaskControl/IOmniTaskControlListEnumerator.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControlListEnumerator</a> </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#GetEnumerator()'>GetEnumerator</a></b>()</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function <a href="../OtlTaskControl/IOmniTaskControlList.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControlList</a> </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#GetTasks()'>GetTasks</a></b>()</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#RegisterAllCommWith(IOmniTask)'>RegisterAllCommWith</a></b>(task: <a href="../OtlTask/IOmniTask.html" target="classFrame" onclick="doClick('../OtlTask/doc-files/default.txvpck.html')">OtlTask.IOmniTask</a> )</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#Remove(IOmniTaskControl)'>Remove</a></b>(taskControl: <a href="../OtlTaskControl/IOmniTaskControl.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControl</a> )</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#RunAll()'>RunAll</a></b>()</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >Sub </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#SendToAll(TOmniMessage)'>SendToAll</a></b>(msg: <a href="../OtlComm/TOmniMessage.html" target="classFrame" onclick="doClick('../OtlComm/doc-files/default.txvpck.html')">OtlComm.TOmniMessage</a> )</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function boolean</b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#TerminateAll(Cardinal)'>TerminateAll</a></b>(maxWait_ms: cardinal)</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#UnregisterAllCommFrom(IOmniTask)'>UnregisterAllCommFrom</a></b>(task: <a href="../OtlTask/IOmniTask.html" target="classFrame" onclick="doClick('../OtlTask/doc-files/default.txvpck.html')">OtlTask.IOmniTask</a> )</code><br />  </td></tr><tr class='TableRow'> <td align='right' valign='top' width='20%'> <font size='-1'> <code > &nbsp; public <b >function boolean</b></code></font></td><td > <code > <b > <a href='../OtlTaskControl/IOmniTaskGroup.html#WaitForAll(Cardinal)'>WaitForAll</a></b>(maxWait_ms: cardinal)</code><br />  </td></tr></table> <p /><p /><a Name='field_detail'/><table border='1' cellpadding='3' cellspacing='0' width='100%'> <tr class='TableHeaderStyle'> <td colspan='2'> <font size='+2'> <b >Property Detail</b></font></td></tr></table><br /><a name='Tasks'> <h3 >Tasks</h3></a><pre >public&nbsp;Tasks: <a href="../OtlTaskControl/IOmniTaskControlList.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControlList</a> </pre><dl > <dt /><b >Type</b><dd >IOmniTaskControlList</dd></dl><dl > <dt /><b >Access</b><dd >read</dd></dl><hr /><a name='method_detail'/><table border='1' cellpadding='3' cellspacing='0' width='100%'> <tr class='TableHeaderStyle'> <td colspan='2'> <font size='+2'> <b >Method Detail</b></font></td></tr></table><br /><a name='Add(IOmniTaskControl)'> <h3 >Add</h3></a><pre >public&nbsp;function Add(taskControl: <a href="../OtlTaskControl/IOmniTaskControl.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControl</a> ): <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >IOmniTaskGroup</dd></dl><hr /><a name='GetEnumerator()'> <h3 >GetEnumerator</h3></a><pre >public&nbsp;function GetEnumerator(): <a href="../OtlTaskControl/IOmniTaskControlListEnumerator.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControlListEnumerator</a> </pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >IOmniTaskControlListEnumerator</dd></dl><hr /><a name='GetTasks()'> <h3 >GetTasks</h3></a><pre >public&nbsp;function GetTasks(): <a href="../OtlTaskControl/IOmniTaskControlList.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControlList</a> </pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >IOmniTaskControlList</dd></dl><hr /><a name='RegisterAllCommWith(IOmniTask)'> <h3 >RegisterAllCommWith</h3></a><pre >public&nbsp;function RegisterAllCommWith(task: <a href="../OtlTask/IOmniTask.html" target="classFrame" onclick="doClick('../OtlTask/doc-files/default.txvpck.html')">OtlTask.IOmniTask</a> ): <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >IOmniTaskGroup</dd></dl><hr /><a name='Remove(IOmniTaskControl)'> <h3 >Remove</h3></a><pre >public&nbsp;function Remove(taskControl: <a href="../OtlTaskControl/IOmniTaskControl.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskControl</a> ): <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >IOmniTaskGroup</dd></dl><hr /><a name='RunAll()'> <h3 >RunAll</h3></a><pre >public&nbsp;function RunAll(): <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >IOmniTaskGroup</dd></dl><hr /><a name='SendToAll(TOmniMessage)'> <h3 >SendToAll</h3></a><pre >public&nbsp;procedure SendToAll(msg: <a href="../OtlComm/TOmniMessage.html" target="classFrame" onclick="doClick('../OtlComm/doc-files/default.txvpck.html')">OtlComm.TOmniMessage</a> )</pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><hr /><a name='TerminateAll(Cardinal)'> <h3 >TerminateAll</h3></a><pre >public&nbsp;function TerminateAll(maxWait_ms: cardinal): boolean</pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >boolean</dd></dl><hr /><a name='UnregisterAllCommFrom(IOmniTask)'> <h3 >UnregisterAllCommFrom</h3></a><pre >public&nbsp;function UnregisterAllCommFrom(task: <a href="../OtlTask/IOmniTask.html" target="classFrame" onclick="doClick('../OtlTask/doc-files/default.txvpck.html')">OtlTask.IOmniTask</a> ): <a href="../OtlTaskControl/IOmniTaskGroup.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">IOmniTaskGroup</a> </pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >IOmniTaskGroup</dd></dl><hr /><a name='WaitForAll(Cardinal)'> <h3 >WaitForAll</h3></a><pre >public&nbsp;function WaitForAll(maxWait_ms: cardinal): boolean</pre><dl > <dt /><b >Reintroduce</b><dd >False</dd></dl><dl > <dt /><b >Returns</b><dd >boolean</dd></dl><hr /><p /><table border='0' cellpadding='0' cellspacing='0'> <tr class='TableHeaderStyle'> <td > <font size='+0'> <b >Association Link</b></font></td></tr></table><br />to Interface <a href="../OtlTaskControl/IOmniTaskControlList.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')"><i>IOmniTaskControlList</i></a> <p /><dl > <dt /><b >Supplier</b><dd >IOmniTaskControlList</dd></dl><dl > <dt /><b >Directed</b><dd >False</dd></dl><dl > <dt /><b >Client</b><dd >Tasks</dd></dl><dl > <dt /><b >Type</b><dd >association</dd></dl><br /><hr /><table border='0' width='100%' cellpadding='1' cellspacing='0'> <tr > <td colspan='2' class='NavBarCellCommon'> <table border='0' cellpadding='0' cellspacing='3'> <tr align='center' valign='top'> <td class='NavBarCellCommon'> <a href='../overview-summary.html'> <font size='+1' class='NavBarFont1'> <b >Overview</b></font></a>&nbsp;</td><td class='NavBarCellCommon'> <a href='package-summary.html'> <font size='+1' class='NavBarFont1'> <b >Namespace</b></font></a>&nbsp;</td><td class='NavBarCellCommonRev'> <font size='+1' class='NavBarFont1'> <b >Classifier</b></font>&nbsp;</td><td class='NavBarCellCommon'> <font size='+1' class='NavBarFont1'>Tree</font>&nbsp;</td><td class='NavBarCellCommon'> <a href='../index-all.html'> <font size='+1' class='NavBarFont1'> <b >Index</b></font></a>&nbsp;</td><td class='NavBarCellCommon'> <a href='../help-doc.html'> <font size='+1' class='NavBarFont1'> <b >Help</b></font></a>&nbsp;</td></tr></table><td align='right' valign='top' rowspan='3'> <em ></em></td></td></tr><tr > <td class='NavBarCellPrevNext'> <font size='-2'><a href="../OtlTaskControl/TOmniTaskControlList.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">PREV </a> &nbsp;&nbsp;<a href="../OtlTaskControl/globals OtlTaskControl.html" target="classFrame" onclick="doClick('../OtlTaskControl/doc-files/default.txvpck.html')">NEXT </a> </font></td><td class='NavBarCellPrevNext'> <font size='-2'> <a href='../index.html' target='_top'> <b >FRAMES</b></a>&nbsp;<a href='../OtlTaskControl/IOmniTaskGroup.html' target='_top'> <b >NO FRAMES</b></a></font></td></tr><tr > <td valign='top' class='NavBarCell3'> <font size='-2'>SUMMARY:&nbsp;INNER&nbsp;|&nbsp;<a href='#field_summary'>FIELD</a>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;DESTR&nbsp;|&nbsp;<a href='#method_summary'>METHOD</a></font></td><td valign='top' class='NavBarCell3'> <font size='-2'>DETAIL:&nbsp;<a href='#field_detail'>FIELD</a>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;DESTR&nbsp;|&nbsp;<a href='#method_detail'>METHOD</a></font></td></tr></table><br /><p /></html>
VSoftTechnologies/OmniThreadLibrary
doc/ModelSupport_OmniThreadLibrary_UML/OtlTaskControl/IOmniTaskGroup.html
HTML
bsd-3-clause
16,566
<!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="Docutils 0.17.1: http://docutils.sourceforge.net/" /> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="lang:clipboard.copy" content="Copy to clipboard"> <meta name="lang:clipboard.copied" content="Copied to clipboard"> <meta name="lang:search.language" content="en"> <meta name="lang:search.pipeline.stopwords" content="True"> <meta name="lang:search.pipeline.trimmer" content="True"> <meta name="lang:search.result.none" content="No matching documents"> <meta name="lang:search.result.one" content="1 matching document"> <meta name="lang:search.result.other" content="# matching documents"> <meta name="lang:search.tokenizer" content="[\s\-]+"> <link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet"> <style> body, input { font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif } code, kbd, pre { font-family: "Roboto Mono", "Courier New", Courier, monospace } </style> <link rel="stylesheet" href="../_static/stylesheets/application.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/> <link rel="stylesheet" href="../_static/fonts/material-icons.css"/> <meta name="theme-color" content="#3f51b5"> <script src="../_static/javascripts/modernizr.js"></script> <title>statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs &#8212; statsmodels</title> <link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png"> <link rel="manifest" href="../_static/icons/site.webmanifest"> <link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191"> <meta name="msapplication-TileColor" content="#2b5797"> <meta name="msapplication-config" content="../_static/icons/browserconfig.xml"> <link rel="stylesheet" href="../_static/stylesheets/examples.css"> <link rel="stylesheet" href="../_static/stylesheets/deprecation.css"> <link rel="stylesheet" type="text/css" href="../_static/pygments.css" /> <link rel="stylesheet" type="text/css" href="../_static/material.css" /> <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" /> <link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" /> <script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script> <script src="../_static/jquery.js"></script> <script src="../_static/underscore.js"></script> <script src="../_static/doctools.js"></script> <script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script> <script>window.MathJax = {"tex": {"inlineMath": [["$", "$"], ["\\(", "\\)"]], "processEscapes": true}, "options": {"ignoreHtmlClass": "tex2jax_ignore|mathjax_ignore|document", "processHtmlClass": "tex2jax_process|mathjax_process|math|output_area"}}</script> <script defer="defer" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> <link rel="shortcut icon" href="../_static/favicon.ico"/> <link rel="author" title="About these documents" href="../about.html" /> <link rel="index" title="Index" href="../genindex.html" /> <link rel="search" title="Search" href="../search.html" /> <link rel="next" title="statsmodels.miscmodels.tmodel.TLinearModel.predict" href="statsmodels.miscmodels.tmodel.TLinearModel.predict.html" /> <link rel="prev" title="statsmodels.miscmodels.tmodel.TLinearModel.nloglike" href="statsmodels.miscmodels.tmodel.TLinearModel.nloglike.html" /> </head> <body dir=ltr data-md-color-primary=indigo data-md-color-accent=blue> <svg class="md-svg"> <defs data-children-count="0"> <svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg> </defs> </svg> <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer"> <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search"> <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> <a href="#generated/statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs" tabindex="1" class="md-skip"> Skip to content </a> <header class="md-header" data-md-component="header"> <nav class="md-header-nav md-grid"> <div class="md-flex navheader"> <div class="md-flex__cell md-flex__cell--shrink"> <a href="../index.html" title="statsmodels" class="md-header-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" height="26" alt="statsmodels logo"> </a> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> </div> <div class="md-flex__cell md-flex__cell--stretch"> <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> <span class="md-header-nav__topic">statsmodels v0.13.2</span> <span class="md-header-nav__topic"> statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs </span> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> <div class="md-search" data-md-component="search" role="dialog"> <label class="md-search__overlay" for="__search"></label> <div class="md-search__inner" role="search"> <form class="md-search__form" action="../search.html" method="get" name="search"> <input type="text" class="md-search__input" name="q" placeholder="Search" autocapitalize="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> <label class="md-icon md-search__icon" for="__search"></label> <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> &#xE5CD; </button> </form> <div class="md-search__output"> <div class="md-search__scrollwrap" data-md-scrollfix> <div class="md-search-result" data-md-component="result"> <div class="md-search-result__meta"> Type to start searching </div> <ol class="md-search-result__list"></ol> </div> </div> </div> </div> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <div class="md-header-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> </div> <script src="../_static/javascripts/version_dropdown.js"></script> <script> var json_loc = "../../versions-v2.json", target_loc = "../../", text = "Versions"; $( document ).ready( add_version_dropdown(json_loc, target_loc, text)); </script> </div> </nav> </header> <div class="md-container"> <nav class="md-tabs" data-md-component="tabs"> <div class="md-tabs__inner md-grid"> <ul class="md-tabs__list"> <li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li> <li class="md-tabs__item"><a href="../miscmodels.html" class="md-tabs__link">Other Models <code class="xref py py-mod docutils literal notranslate"><span class="pre">miscmodels</span></code></a></li> <li class="md-tabs__item"><a href="statsmodels.miscmodels.tmodel.TLinearModel.html" class="md-tabs__link">statsmodels.miscmodels.tmodel.TLinearModel</a></li> </ul> </div> </nav> <main class="md-main"> <div class="md-main__inner md-grid" data-md-component="container"> <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--primary" data-md-level="0"> <label class="md-nav__title md-nav__title--site" for="__drawer"> <a href="../index.html" title="statsmodels" class="md-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48"> </a> <a href="../index.html" title="statsmodels">statsmodels v0.13.2</a> </label> <div class="md-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../install.html" class="md-nav__link">Installing statsmodels</a> </li> <li class="md-nav__item"> <a href="../gettingstarted.html" class="md-nav__link">Getting started</a> </li> <li class="md-nav__item"> <a href="../user-guide.html" class="md-nav__link">User Guide</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../user-guide.html#background" class="md-nav__link">Background</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../duration.html" class="md-nav__link">Methods for Survival and Duration Analysis</a> </li> <li class="md-nav__item"> <a href="../nonparametric.html" class="md-nav__link">Nonparametric Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">nonparametric</span></code></a> </li> <li class="md-nav__item"> <a href="../gmm.html" class="md-nav__link">Generalized Method of Moments <code class="xref py py-mod docutils literal notranslate"><span class="pre">gmm</span></code></a> </li> <li class="md-nav__item"> <a href="../miscmodels.html" class="md-nav__link">Other Models <code class="xref py py-mod docutils literal notranslate"><span class="pre">miscmodels</span></code></a> </li> <li class="md-nav__item"> <a href="../multivariate.html" class="md-nav__link">Multivariate Statistics <code class="xref py py-mod docutils literal notranslate"><span class="pre">multivariate</span></code></a> </li></ul> </li> <li class="md-nav__item"> <a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a> </li></ul> </li> <li class="md-nav__item"> <a href="../examples/index.html" class="md-nav__link">Examples</a> </li> <li class="md-nav__item"> <a href="../api.html" class="md-nav__link">API Reference</a> </li> <li class="md-nav__item"> <a href="../about.html" class="md-nav__link">About statsmodels</a> </li> <li class="md-nav__item"> <a href="../dev/index.html" class="md-nav__link">Developer Page</a> </li> <li class="md-nav__item"> <a href="../release/index.html" class="md-nav__link">Release Notes</a> </li> </ul> </nav> </div> </div> </div> <div class="md-sidebar md-sidebar--secondary" data-md-component="toc"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--secondary"> <ul class="md-nav__list" data-md-scrollfix=""> <li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs.rst.txt">Show Source</a> </li> <li id="searchbox" class="md-nav__item"></li> </ul> </nav> </div> </div> </div> <div class="md-content"> <article class="md-content__inner md-typeset" role="main"> <section id="statsmodels-miscmodels-tmodel-tlinearmodel-nloglikeobs"> <h1 id="generated-statsmodels-miscmodels-tmodel-tlinearmodel-nloglikeobs--page-root">statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs<a class="headerlink" href="#generated-statsmodels-miscmodels-tmodel-tlinearmodel-nloglikeobs--page-root" title="Permalink to this headline">¶</a></h1> <dl class="py method"> <dt class="sig sig-object py" id="statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs"> <span class="sig-prename descclassname"><span class="pre">TLinearModel.</span></span><span class="sig-name descname"><span class="pre">nloglikeobs</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">params</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/statsmodels/miscmodels/tmodel.html#TLinearModel.nloglikeobs"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs" title="Permalink to this definition">¶</a></dt> <dd><p>Loglikelihood of linear model with t distributed errors.</p> <dl class="field-list"> <dt class="field-odd">Parameters</dt> <dd class="field-odd"><dl> <dt><strong>params</strong><span class="classifier"><a class="reference external" href="https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html#numpy.ndarray" title="(in NumPy v1.22)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ndarray</span></code></a></span></dt><dd><p>The parameters of the model. The last 2 parameters are degrees of freedom and scale.</p> </dd> </dl> </dd> <dt class="field-even">Returns</dt> <dd class="field-even"><dl> <dt><strong>loglike</strong><span class="classifier"><a class="reference external" href="https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html#numpy.ndarray" title="(in NumPy v1.22)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ndarray</span></code></a></span></dt><dd><p>The log likelihood of the model evaluated at <cite>params</cite> for each observation defined by self.endog and self.exog.</p> </dd> </dl> </dd> </dl> <p class="rubric">Notes</p> <div class="math notranslate nohighlight"> \[\ln L=\sum_{i=1}^{n}\left[-\lambda_{i}+y_{i}x_{i}^{\prime}\beta-\ln y_{i}!\right]\]</div> <p>The t distribution is the standard t distribution and not a standardized t distribution, which means that the scale parameter is not equal to the standard deviation.</p> <p>self.fixed_params and self.expandparams can be used to fix some parameters. (I doubt this has been tested in this model.)</p> </dd></dl> </section> </article> </div> </div> </main> </div> <footer class="md-footer"> <div class="md-footer-nav"> <nav class="md-footer-nav__inner md-grid"> <a href="statsmodels.miscmodels.tmodel.TLinearModel.nloglike.html" title="statsmodels.miscmodels.tmodel.TLinearModel.nloglike" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> <div class="md-flex__cell md-flex__cell--shrink"> <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> </div> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> <span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Previous </span> statsmodels.miscmodels.tmodel.TLinearModel.nloglike </span> </div> </a> <a href="statsmodels.miscmodels.tmodel.TLinearModel.predict.html" title="statsmodels.miscmodels.tmodel.TLinearModel.predict" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Next </span> statsmodels.miscmodels.tmodel.TLinearModel.predict </span> </div> <div class="md-flex__cell md-flex__cell--shrink"><i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> </div> </a> </nav> </div> <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> <div class="md-footer-copyright"> <div class="md-footer-copyright__highlight"> &#169; Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers. </div> Last updated on Feb 08, 2022. <br/> Created using <a href="http://www.sphinx-doc.org/">Sphinx</a> 4.4.0. and <a href="https://github.com/bashtage/sphinx-material/">Material for Sphinx</a> </div> </div> </div> </footer> <script src="../_static/javascripts/application.js"></script> <script>app.initialize({version: "1.0.4", url: {base: ".."}})</script> </body> </html>
statsmodels/statsmodels.github.io
v0.13.2/generated/statsmodels.miscmodels.tmodel.TLinearModel.nloglikeobs.html
HTML
bsd-3-clause
20,246
<!DOCTYPE html> <!-- Copyright (c) 2015 Intel Corporation. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of works must retain the original copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the original copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this work without specific prior written permission. THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: Yin,Haichao <[email protected]> --> <html> <head> <meta charset='utf-8'> <title>Youdao_Note_Link Test</title> <link rel="author" title="Intel" href="http://www.intel.com"> </head> <body> <p> <strong>Test steps:</strong> </p> <ol> <li>Install the "youdaonote.deb" webapp and launch it. </li> <li>Click the different links in the page several times. </li> </ol> <p> <strong>Expected Output:</strong> </p> <ol> <li>Webapp could be launched successfully. </li> <li>The links can be clicked and jumped correct. </li> </ol> </body> </html>
jiajiax/crosswalk-test-suite
misc/webappmanu-linux-tests/webapp/Youdao_Note_Link.html
HTML
bsd-3-clause
2,097
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>PyQt4.QtGui.QStyleOptionDockWidgetV2</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="QGIS-AIMS-Plugin-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> PyQt4 :: QtGui :: QStyleOptionDockWidgetV2 :: Class&nbsp;QStyleOptionDockWidgetV2 </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="PyQt4.QtGui.QStyleOptionDockWidgetV2-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== CLASS DESCRIPTION ==================== --> <h1 class="epydoc">Class QStyleOptionDockWidgetV2</h1><p class="nomargin-top"></p> <pre class="base-tree"> object --+ | sip.simplewrapper --+ | <a href="PyQt4.QtGui.QStyleOption-class.html">QStyleOption</a> --+ | <a href="PyQt4.QtGui.QStyleOptionDockWidget-class.html">QStyleOptionDockWidget</a> --+ | <strong class="uidshort">QStyleOptionDockWidgetV2</strong> </pre> <hr /> <p>QStyleOptionDockWidgetV2() QStyleOptionDockWidgetV2(QStyleOptionDockWidgetV2) QStyleOptionDockWidgetV2(QStyleOptionDockWidget)</p> <!-- ==================== NESTED CLASSES ==================== --> <a name="section-NestedClasses"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Nested Classes</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-NestedClasses" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="PyQt4.QtGui.QStyleOptionDockWidgetV2.StyleOptionVersion-class.html" class="summary-name">StyleOptionVersion</a> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="PyQt4.QtGui.QStyleOptionDockWidget-class.html">QStyleOptionDockWidget</a></code></b>: <code><a href="PyQt4.QtGui.QStyleOptionDockWidget.StyleOptionType-class.html">StyleOptionType</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="PyQt4.QtGui.QStyleOption-class.html">QStyleOption</a></code></b>: <code><a href="PyQt4.QtGui.QStyleOption.OptionType-class.html">OptionType</a></code> </p> </td> </tr> </table> <!-- ==================== INSTANCE METHODS ==================== --> <a name="section-InstanceMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Instance Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-InstanceMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="PyQt4.QtGui.QStyleOption-class.html">QStyleOption</a></code></b>: <code><a href="PyQt4.QtGui.QStyleOption-class.html#init">init</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#initFrom">initFrom</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>sip.simplewrapper</code></b>: <code>__init__</code>, <code>__new__</code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__delattr__</code>, <code>__format__</code>, <code>__getattribute__</code>, <code>__hash__</code>, <code>__reduce__</code>, <code>__reduce_ex__</code>, <code>__repr__</code>, <code>__setattr__</code>, <code>__sizeof__</code>, <code>__str__</code>, <code>__subclasshook__</code> </p> </td> </tr> </table> <!-- ==================== CLASS VARIABLES ==================== --> <a name="section-ClassVariables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Class Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-ClassVariables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="Version"></a><span class="summary-name">Version</span> = <code title="2">2</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="PyQt4.QtGui.QStyleOptionDockWidgetV2-class.html#verticalTitleBar" class="summary-name">verticalTitleBar</a> = <code title="&lt;sip.variabledescriptor object at 0x7f88eaa94460&gt;">&lt;sip.variabledescriptor object at 0x7f88eaa<code class="variable-ellipsis">...</code></code> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="PyQt4.QtGui.QStyleOptionDockWidget-class.html">QStyleOptionDockWidget</a></code></b>: <code><a href="PyQt4.QtGui.QStyleOptionDockWidget-class.html#Type">Type</a></code>, <code><a href="PyQt4.QtGui.QStyleOptionDockWidget-class.html#closable">closable</a></code>, <code><a href="PyQt4.QtGui.QStyleOptionDockWidget-class.html#floatable">floatable</a></code>, <code><a href="PyQt4.QtGui.QStyleOptionDockWidget-class.html#movable">movable</a></code>, <code><a href="PyQt4.QtGui.QStyleOptionDockWidget-class.html#title">title</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="PyQt4.QtGui.QStyleOption-class.html">QStyleOption</a></code></b>: <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Button">SO_Button</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_ComboBox">SO_ComboBox</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Complex">SO_Complex</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_ComplexCustomBase">SO_ComplexCustomBase</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_CustomBase">SO_CustomBase</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Default">SO_Default</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_DockWidget">SO_DockWidget</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_FocusRect">SO_FocusRect</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Frame">SO_Frame</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_GraphicsItem">SO_GraphicsItem</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_GroupBox">SO_GroupBox</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Header">SO_Header</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_MenuItem">SO_MenuItem</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_ProgressBar">SO_ProgressBar</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Q3DockWindow">SO_Q3DockWindow</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Q3ListView">SO_Q3ListView</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Q3ListViewItem">SO_Q3ListViewItem</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_RubberBand">SO_RubberBand</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_SizeGrip">SO_SizeGrip</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Slider">SO_Slider</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_SpinBox">SO_SpinBox</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_Tab">SO_Tab</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_TabBarBase">SO_TabBarBase</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_TabWidgetFrame">SO_TabWidgetFrame</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_TitleBar">SO_TitleBar</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_ToolBar">SO_ToolBar</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_ToolBox">SO_ToolBox</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_ToolButton">SO_ToolButton</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#SO_ViewItem">SO_ViewItem</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#direction">direction</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#fontMetrics">fontMetrics</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#palette">palette</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#rect">rect</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#state">state</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#type">type</a></code>, <code><a href="PyQt4.QtGui.QStyleOption-class.html#version">version</a></code> </p> </td> </tr> </table> <!-- ==================== PROPERTIES ==================== --> <a name="section-Properties"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Properties</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Properties" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__class__</code> </p> </td> </tr> </table> <!-- ==================== CLASS VARIABLE DETAILS ==================== --> <a name="section-ClassVariableDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Class Variable Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-ClassVariableDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="verticalTitleBar"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">verticalTitleBar</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> &lt;sip.variabledescriptor object at 0x7f88eaa94460&gt; </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <br /> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="QGIS-AIMS-Plugin-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Tue Jun 14 13:29:16 2016 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
linz/QGIS-AIMS-Plugin
doc/Aims-Plugin_Doc/PyQt4.QtGui.QStyleOptionDockWidgetV2-class.html
HTML
bsd-3-clause
15,229
<!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_22) on Wed Sep 14 22:21:33 CEST 2011 --> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> Uses of Class net.sourceforge.pmd.rules.UnusedModifier (PMD 4.2.6 API) </TITLE> <META NAME="date" CONTENT="2011-09-14"> <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 net.sourceforge.pmd.rules.UnusedModifier (PMD 4.2.6 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="../../../../../net/sourceforge/pmd/rules/UnusedModifier.html" title="class in net.sourceforge.pmd.rules"><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?net/sourceforge/pmd/rules//class-useUnusedModifier.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="UnusedModifier.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>net.sourceforge.pmd.rules.UnusedModifier</B></H2> </CENTER> No usage of net.sourceforge.pmd.rules.UnusedModifier <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="../../../../../net/sourceforge/pmd/rules/UnusedModifier.html" title="class in net.sourceforge.pmd.rules"><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?net/sourceforge/pmd/rules//class-useUnusedModifier.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="UnusedModifier.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; 2002-2011 InfoEther. All Rights Reserved. </BODY> </HTML>
pscadiz/pmd-4.2.6-gds
docs/apidocs/net/sourceforge/pmd/rules/class-use/UnusedModifier.html
HTML
bsd-3-clause
6,088
<!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="Docutils 0.17.1: http://docutils.sourceforge.net/" /> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="lang:clipboard.copy" content="Copy to clipboard"> <meta name="lang:clipboard.copied" content="Copied to clipboard"> <meta name="lang:search.language" content="en"> <meta name="lang:search.pipeline.stopwords" content="True"> <meta name="lang:search.pipeline.trimmer" content="True"> <meta name="lang:search.result.none" content="No matching documents"> <meta name="lang:search.result.one" content="1 matching document"> <meta name="lang:search.result.other" content="# matching documents"> <meta name="lang:search.tokenizer" content="[\s\-]+"> <link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet"> <style> body, input { font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif } code, kbd, pre { font-family: "Roboto Mono", "Courier New", Courier, monospace } </style> <link rel="stylesheet" href="../_static/stylesheets/application.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/> <link rel="stylesheet" href="../_static/fonts/material-icons.css"/> <meta name="theme-color" content="#3f51b5"> <script src="../_static/javascripts/modernizr.js"></script> <title>statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test &#8212; statsmodels</title> <link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png"> <link rel="manifest" href="../_static/icons/site.webmanifest"> <link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191"> <meta name="msapplication-TileColor" content="#2b5797"> <meta name="msapplication-config" content="../_static/icons/browserconfig.xml"> <link rel="stylesheet" href="../_static/stylesheets/examples.css"> <link rel="stylesheet" href="../_static/stylesheets/deprecation.css"> <link rel="stylesheet" type="text/css" href="../_static/pygments.css" /> <link rel="stylesheet" type="text/css" href="../_static/material.css" /> <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" /> <link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" /> <script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script> <script src="../_static/jquery.js"></script> <script src="../_static/underscore.js"></script> <script src="../_static/doctools.js"></script> <script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script> <link rel="shortcut icon" href="../_static/favicon.ico"/> <link rel="author" title="About these documents" href="../about.html" /> <link rel="index" title="Index" href="../genindex.html" /> <link rel="search" title="Search" href="../search.html" /> <link rel="next" title="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test_pairwise" href="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test_pairwise.html" /> <link rel="prev" title="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.summary" href="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.summary.html" /> </head> <body dir=ltr data-md-color-primary=indigo data-md-color-accent=blue> <svg class="md-svg"> <defs data-children-count="0"> <svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg> </defs> </svg> <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer"> <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search"> <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> <a href="#generated/statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test" tabindex="1" class="md-skip"> Skip to content </a> <header class="md-header" data-md-component="header"> <nav class="md-header-nav md-grid"> <div class="md-flex navheader"> <div class="md-flex__cell md-flex__cell--shrink"> <a href="../index.html" title="statsmodels" class="md-header-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" height="26" alt="statsmodels logo"> </a> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> </div> <div class="md-flex__cell md-flex__cell--stretch"> <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> <span class="md-header-nav__topic">statsmodels v0.13.2</span> <span class="md-header-nav__topic"> statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test </span> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> <div class="md-search" data-md-component="search" role="dialog"> <label class="md-search__overlay" for="__search"></label> <div class="md-search__inner" role="search"> <form class="md-search__form" action="../search.html" method="get" name="search"> <input type="text" class="md-search__input" name="q" placeholder="Search" autocapitalize="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> <label class="md-icon md-search__icon" for="__search"></label> <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> &#xE5CD; </button> </form> <div class="md-search__output"> <div class="md-search__scrollwrap" data-md-scrollfix> <div class="md-search-result" data-md-component="result"> <div class="md-search-result__meta"> Type to start searching </div> <ol class="md-search-result__list"></ol> </div> </div> </div> </div> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <div class="md-header-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> </div> <script src="../_static/javascripts/version_dropdown.js"></script> <script> var json_loc = "../../versions-v2.json", target_loc = "../../", text = "Versions"; $( document ).ready( add_version_dropdown(json_loc, target_loc, text)); </script> </div> </nav> </header> <div class="md-container"> <nav class="md-tabs" data-md-component="tabs"> <div class="md-tabs__inner md-grid"> <ul class="md-tabs__list"> <li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li> <li class="md-tabs__item"><a href="../statespace.html" class="md-tabs__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a></li> <li class="md-tabs__item"><a href="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.html" class="md-tabs__link">statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults</a></li> </ul> </div> </nav> <main class="md-main"> <div class="md-main__inner md-grid" data-md-component="container"> <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--primary" data-md-level="0"> <label class="md-nav__title md-nav__title--site" for="__drawer"> <a href="../index.html" title="statsmodels" class="md-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48"> </a> <a href="../index.html" title="statsmodels">statsmodels v0.13.2</a> </label> <div class="md-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../install.html" class="md-nav__link">Installing statsmodels</a> </li> <li class="md-nav__item"> <a href="../gettingstarted.html" class="md-nav__link">Getting started</a> </li> <li class="md-nav__item"> <a href="../user-guide.html" class="md-nav__link">User Guide</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../user-guide.html#background" class="md-nav__link">Background</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../tsa.html" class="md-nav__link">Time Series analysis <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa</span></code></a> </li> <li class="md-nav__item"> <a href="../statespace.html" class="md-nav__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a> </li> <li class="md-nav__item"> <a href="../vector_ar.html" class="md-nav__link">Vector Autoregressions <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa.vector_ar</span></code></a> </li></ul> </li> <li class="md-nav__item"> <a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a> </li></ul> </li> <li class="md-nav__item"> <a href="../examples/index.html" class="md-nav__link">Examples</a> </li> <li class="md-nav__item"> <a href="../api.html" class="md-nav__link">API Reference</a> </li> <li class="md-nav__item"> <a href="../about.html" class="md-nav__link">About statsmodels</a> </li> <li class="md-nav__item"> <a href="../dev/index.html" class="md-nav__link">Developer Page</a> </li> <li class="md-nav__item"> <a href="../release/index.html" class="md-nav__link">Release Notes</a> </li> </ul> </nav> </div> </div> </div> <div class="md-sidebar md-sidebar--secondary" data-md-component="toc"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--secondary"> <ul class="md-nav__list" data-md-scrollfix=""> <li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test.rst.txt">Show Source</a> </li> <li id="searchbox" class="md-nav__item"></li> </ul> </nav> </div> </div> </div> <div class="md-content"> <article class="md-content__inner md-typeset" role="main"> <section id="statsmodels-tsa-statespace-dynamic-factor-mq-dynamicfactormqresults-t-test"> <h1 id="generated-statsmodels-tsa-statespace-dynamic-factor-mq-dynamicfactormqresults-t-test--page-root">statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test<a class="headerlink" href="#generated-statsmodels-tsa-statespace-dynamic-factor-mq-dynamicfactormqresults-t-test--page-root" title="Permalink to this headline">¶</a></h1> <dl class="py method"> <dt class="sig sig-object py" id="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test"> <span class="sig-prename descclassname"><span class="pre">DynamicFactorMQResults.</span></span><span class="sig-name descname"><span class="pre">t_test</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">r_matrix</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">cov_p</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">use_t</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test" title="Permalink to this definition">¶</a></dt> <dd><p>Compute a t-test for a each linear hypothesis of the form Rb = q.</p> <dl class="field-list"> <dt class="field-odd">Parameters</dt> <dd class="field-odd"><dl> <dt><strong>r_matrix</strong><span class="classifier">{<a class="reference external" href="https://numpy.org/doc/stable/glossary.html#term-array_like" title="(in NumPy v1.22)"><span>array_like</span></a>, <a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.10)"><code class="docutils literal notranslate"><span class="pre">str</span></code></a>, <a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.10)"><code class="docutils literal notranslate"><span class="pre">tuple</span></code></a>}</span></dt><dd><p>One of:</p> <ul class="simple"> <li><p>array : If an array is given, a p x k 2d array or length k 1d array specifying the linear restrictions. It is assumed that the linear combination is equal to zero.</p></li> <li><p>str : The full hypotheses to test can be given as a string. See the examples.</p></li> <li><p>tuple : A tuple of arrays in the form (R, q). If q is given, can be either a scalar or a length p row vector.</p></li> </ul> </dd> <dt><strong>cov_p</strong><span class="classifier"><a class="reference external" href="https://numpy.org/doc/stable/glossary.html#term-array_like" title="(in NumPy v1.22)"><span>array_like</span></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>An alternative estimate for the parameter covariance matrix. If None is given, self.normalized_cov_params is used.</p> </dd> <dt><strong>use_t</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#bltin-boolean-values" title="(in Python v3.10)"><span class="xref std std-ref">bool</span></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">optional</span></code></span></dt><dd><p>If use_t is None, then the default of the model is used. If use_t is True, then the p-values are based on the t distribution. If use_t is False, then the p-values are based on the normal distribution.</p> </dd> </dl> </dd> <dt class="field-even">Returns</dt> <dd class="field-even"><dl class="simple"> <dt><code class="xref py py-obj docutils literal notranslate"><span class="pre">ContrastResults</span></code></dt><dd><p>The results for the test are attributes of this results instance. The available results have the same elements as the parameter table in <cite>summary()</cite>.</p> </dd> </dl> </dd> </dl> <div class="admonition seealso"> <p class="admonition-title">See also</p> <dl class="simple"> <dt><a class="reference internal" href="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.tvalues.html#statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.tvalues" title="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.tvalues"><code class="xref py py-obj docutils literal notranslate"><span class="pre">tvalues</span></code></a></dt><dd><p>Individual t statistics for the estimated parameters.</p> </dd> <dt><a class="reference internal" href="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.f_test.html#statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.f_test" title="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.f_test"><code class="xref py py-obj docutils literal notranslate"><span class="pre">f_test</span></code></a></dt><dd><p>Perform an F tests on model parameters.</p> </dd> <dt><code class="xref py py-obj docutils literal notranslate"><span class="pre">patsy.DesignInfo.linear_constraint</span></code></dt><dd><p>Specify a linear constraint.</p> </dd> </dl> </div> <p class="rubric">Examples</p> <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span> <span class="gp">&gt;&gt;&gt; </span><span class="kn">import</span> <span class="nn">statsmodels.api</span> <span class="k">as</span> <span class="nn">sm</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">data</span> <span class="o">=</span> <span class="n">sm</span><span class="o">.</span><span class="n">datasets</span><span class="o">.</span><span class="n">longley</span><span class="o">.</span><span class="n">load</span><span class="p">()</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">data</span><span class="o">.</span><span class="n">exog</span> <span class="o">=</span> <span class="n">sm</span><span class="o">.</span><span class="n">add_constant</span><span class="p">(</span><span class="n">data</span><span class="o">.</span><span class="n">exog</span><span class="p">)</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">results</span> <span class="o">=</span> <span class="n">sm</span><span class="o">.</span><span class="n">OLS</span><span class="p">(</span><span class="n">data</span><span class="o">.</span><span class="n">endog</span><span class="p">,</span> <span class="n">data</span><span class="o">.</span><span class="n">exog</span><span class="p">)</span><span class="o">.</span><span class="n">fit</span><span class="p">()</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">r</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros_like</span><span class="p">(</span><span class="n">results</span><span class="o">.</span><span class="n">params</span><span class="p">)</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">r</span><span class="p">[</span><span class="mi">5</span><span class="p">:]</span> <span class="o">=</span> <span class="p">[</span><span class="mi">1</span><span class="p">,</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="gp">&gt;&gt;&gt; </span><span class="nb">print</span><span class="p">(</span><span class="n">r</span><span class="p">)</span> <span class="go">[ 0. 0. 0. 0. 0. 1. -1.]</span> </pre></div> </div> <p>r tests that the coefficients on the 5th and 6th independent variable are the same.</p> <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">T_test</span> <span class="o">=</span> <span class="n">results</span><span class="o">.</span><span class="n">t_test</span><span class="p">(</span><span class="n">r</span><span class="p">)</span> <span class="gp">&gt;&gt;&gt; </span><span class="nb">print</span><span class="p">(</span><span class="n">T_test</span><span class="p">)</span> <span class="go"> Test for Constraints</span> <span class="go">==============================================================================</span> <span class="go"> coef std err t P&gt;|t| [0.025 0.975]</span> <span class="go">------------------------------------------------------------------------------</span> <span class="go">c0 -1829.2026 455.391 -4.017 0.003 -2859.368 -799.037</span> <span class="go">==============================================================================</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">T_test</span><span class="o">.</span><span class="n">effect</span> <span class="go">-1829.2025687192481</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">T_test</span><span class="o">.</span><span class="n">sd</span> <span class="go">455.39079425193762</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">T_test</span><span class="o">.</span><span class="n">tvalue</span> <span class="go">-4.0167754636411717</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">T_test</span><span class="o">.</span><span class="n">pvalue</span> <span class="go">0.0015163772380899498</span> </pre></div> </div> <p>Alternatively, you can specify the hypothesis tests using a string</p> <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">statsmodels.formula.api</span> <span class="kn">import</span> <span class="n">ols</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">dta</span> <span class="o">=</span> <span class="n">sm</span><span class="o">.</span><span class="n">datasets</span><span class="o">.</span><span class="n">longley</span><span class="o">.</span><span class="n">load_pandas</span><span class="p">()</span><span class="o">.</span><span class="n">data</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">formula</span> <span class="o">=</span> <span class="s1">'TOTEMP ~ GNPDEFL + GNP + UNEMP + ARMED + POP + YEAR'</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">results</span> <span class="o">=</span> <span class="n">ols</span><span class="p">(</span><span class="n">formula</span><span class="p">,</span> <span class="n">dta</span><span class="p">)</span><span class="o">.</span><span class="n">fit</span><span class="p">()</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">hypotheses</span> <span class="o">=</span> <span class="s1">'GNPDEFL = GNP, UNEMP = 2, YEAR/1829 = 1'</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">t_test</span> <span class="o">=</span> <span class="n">results</span><span class="o">.</span><span class="n">t_test</span><span class="p">(</span><span class="n">hypotheses</span><span class="p">)</span> <span class="gp">&gt;&gt;&gt; </span><span class="nb">print</span><span class="p">(</span><span class="n">t_test</span><span class="p">)</span> <span class="go"> Test for Constraints</span> <span class="go">==============================================================================</span> <span class="go"> coef std err t P&gt;|t| [0.025 0.975]</span> <span class="go">------------------------------------------------------------------------------</span> <span class="go">c0 15.0977 84.937 0.178 0.863 -177.042 207.238</span> <span class="go">c1 -2.0202 0.488 -8.231 0.000 -3.125 -0.915</span> <span class="go">c2 1.0001 0.249 0.000 1.000 0.437 1.563</span> <span class="go">==============================================================================</span> </pre></div> </div> </dd></dl> </section> </article> </div> </div> </main> </div> <footer class="md-footer"> <div class="md-footer-nav"> <nav class="md-footer-nav__inner md-grid"> <a href="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.summary.html" title="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.summary" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> <div class="md-flex__cell md-flex__cell--shrink"> <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> </div> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> <span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Previous </span> statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.summary </span> </div> </a> <a href="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test_pairwise.html" title="statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test_pairwise" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Next </span> statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test_pairwise </span> </div> <div class="md-flex__cell md-flex__cell--shrink"><i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> </div> </a> </nav> </div> <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> <div class="md-footer-copyright"> <div class="md-footer-copyright__highlight"> &#169; Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers. </div> Last updated on Feb 08, 2022. <br/> Created using <a href="http://www.sphinx-doc.org/">Sphinx</a> 4.4.0. and <a href="https://github.com/bashtage/sphinx-material/">Material for Sphinx</a> </div> </div> </div> </footer> <script src="../_static/javascripts/application.js"></script> <script>app.initialize({version: "1.0.4", url: {base: ".."}})</script> </body> </html>
statsmodels/statsmodels.github.io
v0.13.2/generated/statsmodels.tsa.statespace.dynamic_factor_mq.DynamicFactorMQResults.t_test.html
HTML
bsd-3-clause
29,312
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_24) on Tue May 01 09:56:12 CEST 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryReturnRule (PMD 5.0.0 API) </TITLE> <META NAME="date" CONTENT="2012-05-01"> <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 net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryReturnRule (PMD 5.0.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&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="../../../../../../../../net/sourceforge/pmd/lang/java/rule/unnecessary/UnnecessaryReturnRule.html" title="class in net.sourceforge.pmd.lang.java.rule.unnecessary"><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?net/sourceforge/pmd/lang/java/rule/unnecessary//class-useUnnecessaryReturnRule.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="UnnecessaryReturnRule.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>net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryReturnRule</B></H2> </CENTER> No usage of net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryReturnRule <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="../../../../../../../../net/sourceforge/pmd/lang/java/rule/unnecessary/UnnecessaryReturnRule.html" title="class in net.sourceforge.pmd.lang.java.rule.unnecessary"><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?net/sourceforge/pmd/lang/java/rule/unnecessary//class-useUnnecessaryReturnRule.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="UnnecessaryReturnRule.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; 2002-2012 <a href="http://pmd.sourceforge.net/">InfoEther</a>. All Rights Reserved. </BODY> </HTML>
daejunpark/jsaf
third_party/pmd/docs/apidocs/net/sourceforge/pmd/lang/java/rule/unnecessary/class-use/UnnecessaryReturnRule.html
HTML
bsd-3-clause
6,558
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>ChainIterator | @phosphor/algorithm</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">@phosphor/algorithm</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="../globals.html">Globals</a> </li> <li> <a href="chainiterator.html">ChainIterator</a> </li> </ul> <h1>Class ChainIterator&lt;T&gt;</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>An iterator which chains together several iterators.</p> </div> </div> </section> <section class="tsd-panel tsd-type-parameters"> <h3>Type parameters</h3> <ul class="tsd-type-parameters"> <li> <h4>T</h4> </li> </ul> </section> <section class="tsd-panel tsd-hierarchy"> <h3>Hierarchy</h3> <ul class="tsd-hierarchy"> <li> <span class="target">ChainIterator</span> </li> </ul> </section> <section class="tsd-panel"> <h3>Implements</h3> <ul class="tsd-hierarchy"> <li><a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</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="chainiterator.html#constructor" class="tsd-kind-icon">constructor</a></li> </ul> </section> <section class="tsd-index-section tsd-is-private tsd-is-private-protected"> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="chainiterator.html#_active" class="tsd-kind-icon">_active</a></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="chainiterator.html#_cloned" class="tsd-kind-icon">_cloned</a></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="chainiterator.html#_source" class="tsd-kind-icon">_source</a></li> </ul> </section> <section class="tsd-index-section "> <h3>Methods</h3> <ul class="tsd-index-list"> <li class="tsd-kind-method tsd-parent-kind-class"><a href="chainiterator.html#clone" class="tsd-kind-icon">clone</a></li> <li class="tsd-kind-method tsd-parent-kind-class"><a href="chainiterator.html#iter" class="tsd-kind-icon">iter</a></li> <li class="tsd-kind-method tsd-parent-kind-class"><a href="chainiterator.html#next" class="tsd-kind-icon">next</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>Chain<wbr>Iterator<span class="tsd-signature-symbol">(</span>source<span class="tsd-signature-symbol">: </span><a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="chainiterator.html" class="tsd-signature-type">ChainIterator</a></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/phosphorjs/phosphor/blob/c832b0c3/packages/algorithm/src/chain.ts#L43">chain.ts:43</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Construct a new chain iterator.</p> </div> </div> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>source: <a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">&gt;</span></h5> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>The iterator of iterators of interest.</p> </div> </div> </li> </ul> <h4 class="tsd-returns-title">Returns <a href="chainiterator.html" class="tsd-signature-type">ChainIterator</a></h4> </li> </ul> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-private tsd-is-private-protected"> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"> <a name="_active" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagPrivate">Private</span> _active</h3> <div class="tsd-signature tsd-kind-icon">_active<span class="tsd-signature-symbol">:</span> <a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/phosphorjs/phosphor/blob/c832b0c3/packages/algorithm/src/chain.ts#L98">chain.ts:98</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"> <a name="_cloned" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagPrivate">Private</span> _cloned</h3> <div class="tsd-signature tsd-kind-icon">_cloned<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> =&nbsp;false</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/phosphorjs/phosphor/blob/c832b0c3/packages/algorithm/src/chain.ts#L99">chain.ts:99</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"> <a name="_source" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagPrivate">Private</span> _source</h3> <div class="tsd-signature tsd-kind-icon">_source<span class="tsd-signature-symbol">:</span> <a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">&gt;</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/phosphorjs/phosphor/blob/c832b0c3/packages/algorithm/src/chain.ts#L97">chain.ts:97</a></li> </ul> </aside> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Methods</h2> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"> <a name="clone" class="tsd-anchor"></a> <h3>clone</h3> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"> <li class="tsd-signature tsd-kind-icon">clone<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <p>Implementation of <a href="../interfaces/iiterator.html">IIterator</a>.<a href="../interfaces/iiterator.html#clone">clone</a></p> <ul> <li>Defined in <a href="https://github.com/phosphorjs/phosphor/blob/c832b0c3/packages/algorithm/src/chain.ts#L68">chain.ts:68</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Create an independent clone of the iterator.</p> </div> </div> <h4 class="tsd-returns-title">Returns <a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span></h4> <p>A new independent clone of the iterator.</p> </li> </ul> </section> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"> <a name="iter" class="tsd-anchor"></a> <h3>iter</h3> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"> <li class="tsd-signature tsd-kind-icon">iter<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <p>Implementation of <a href="../interfaces/iiterator.html">IIterator</a>.<a href="../interfaces/iiterator.html#iter">iter</a></p> <ul> <li>Defined in <a href="https://github.com/phosphorjs/phosphor/blob/c832b0c3/packages/algorithm/src/chain.ts#L59">chain.ts:59</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Get an iterator over the object&#39;s values.</p> </div> </div> <h4 class="tsd-returns-title">Returns <a href="../interfaces/iiterator.html" class="tsd-signature-type">IIterator</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">&gt;</span></h4> <p>An iterator which yields the object&#39;s values.</p> </li> </ul> </section> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"> <a name="next" class="tsd-anchor"></a> <h3>next</h3> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"> <li class="tsd-signature tsd-kind-icon">next<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <p>Implementation of <a href="../interfaces/iiterator.html">IIterator</a>.<a href="../interfaces/iiterator.html#next">next</a></p> <ul> <li>Defined in <a href="https://github.com/phosphorjs/phosphor/blob/c832b0c3/packages/algorithm/src/chain.ts#L81">chain.ts:81</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Get the next value from the iterator.</p> </div> </div> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">T</span> <span class="tsd-signature-symbol"> | </span> <span class="tsd-signature-type">undefined</span> </h4> <p>The next value from the iterator, or <code>undefined</code>.</p> </li> </ul> </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> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="arrayiterator.html" class="tsd-kind-icon">Array<wbr>Iterator</a> </li> </ul> <ul class="current"> <li class="current tsd-kind-class tsd-has-type-parameter"> <a href="chainiterator.html" class="tsd-kind-icon">Chain<wbr>Iterator</a> <ul> <li class=" tsd-kind-constructor tsd-parent-kind-class"> <a href="chainiterator.html#constructor" class="tsd-kind-icon">constructor</a> </li> <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-private"> <a href="chainiterator.html#_active" class="tsd-kind-icon">_active</a> </li> <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-private"> <a href="chainiterator.html#_cloned" class="tsd-kind-icon">_cloned</a> </li> <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-private"> <a href="chainiterator.html#_source" class="tsd-kind-icon">_source</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class"> <a href="chainiterator.html#clone" class="tsd-kind-icon">clone</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class"> <a href="chainiterator.html#iter" class="tsd-kind-icon">iter</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class"> <a href="chainiterator.html#next" class="tsd-kind-icon">next</a> </li> </ul> </li> </ul> <ul class="after-current"> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="emptyiterator.html" class="tsd-kind-icon">Empty<wbr>Iterator</a> </li> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="filteriterator.html" class="tsd-kind-icon">Filter<wbr>Iterator</a> </li> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="mapiterator.html" class="tsd-kind-icon">Map<wbr>Iterator</a> </li> <li class=" tsd-kind-class"> <a href="rangeiterator.html" class="tsd-kind-icon">Range<wbr>Iterator</a> </li> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="repeatiterator.html" class="tsd-kind-icon">Repeat<wbr>Iterator</a> </li> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="retroarrayiterator.html" class="tsd-kind-icon">Retro<wbr>Array<wbr>Iterator</a> </li> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="strideiterator.html" class="tsd-kind-icon">Stride<wbr>Iterator</a> </li> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="takeiterator.html" class="tsd-kind-icon">Take<wbr>Iterator</a> </li> <li class=" tsd-kind-class tsd-has-type-parameter"> <a href="zipiterator.html" class="tsd-kind-icon">Zip<wbr>Iterator</a> </li> <li class=" tsd-kind-interface tsd-has-type-parameter"> <a href="../interfaces/iiterable.html" class="tsd-kind-icon">IIterable</a> </li> <li class=" tsd-kind-interface tsd-has-type-parameter"> <a href="../interfaces/iiterator.html" class="tsd-kind-icon">IIterator</a> </li> <li class=" tsd-kind-interface tsd-has-type-parameter"> <a href="../interfaces/iretroable.html" class="tsd-kind-icon">IRetroable</a> </li> <li class=" tsd-kind-type-alias tsd-has-type-parameter"> <a href="../globals.html#iterableorarraylike" class="tsd-kind-icon">Iterable<wbr>OrArray<wbr>Like</a> </li> <li class=" tsd-kind-type-alias tsd-has-type-parameter"> <a href="../globals.html#retroableorarraylike" class="tsd-kind-icon">Retroable<wbr>OrArray<wbr>Like</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#chain" class="tsd-kind-icon">chain</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#each" class="tsd-kind-icon">each</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#empty" class="tsd-kind-icon">empty</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#every" class="tsd-kind-icon">every</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#filter" class="tsd-kind-icon">filter</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#find" class="tsd-kind-icon">find</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#iter" class="tsd-kind-icon">iter</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#map" class="tsd-kind-icon">map</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#max" class="tsd-kind-icon">max</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#min" class="tsd-kind-icon">min</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#minmax" class="tsd-kind-icon">minmax</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#once" class="tsd-kind-icon">once</a> </li> <li class=" tsd-kind-function"> <a href="../globals.html#range" class="tsd-kind-icon">range</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#reduce" class="tsd-kind-icon">reduce</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#repeat" class="tsd-kind-icon">repeat</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#retro" class="tsd-kind-icon">retro</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#some" class="tsd-kind-icon">some</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#stride" class="tsd-kind-icon">stride</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#take" class="tsd-kind-icon">take</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#toarray" class="tsd-kind-icon">to<wbr>Array</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#topologicsort" class="tsd-kind-icon">topologic<wbr>Sort</a> </li> <li class=" tsd-kind-function tsd-has-type-parameter"> <a href="../globals.html#zip" class="tsd-kind-icon">zip</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>
phosphorjs/phosphor
docs/api/algorithm/classes/chainiterator.html
HTML
bsd-3-clause
26,418
--- layout: default title: Typography - Body Text --- <span id="body-anchor" class="h2 jumpTo-anchor">Body</span> <div class="vertical lined"> <ul> <li> <h6><code>.lede</code> (Intro text)</h6> <p class="lede">A lede, or lead, paragraph in literature is the opening paragraph of an article, essay, news story or book chapter. It usually occurs together with the headline or title. It precedes the main body of the article, and it gives the reader the main idea of the story. In both spellings, the word rhymes with the word need.</p> </li> <li> <div class="row"> <div class="half"> <h6><code>&lt;p&gt;</code> or <code>.body-text</code></h6> <p class="body-text">All paragraphs are wrapped in p tags. Additionally, p elements can be wrapped with a blockquote element if the p element is indeed a quote. Historically, blockquote has been used purely to force indents, but this is now achieved using CSS. Reserve blockquote for quotes.</p> </div> <div class="half"> <h6><code>&lt;small&gt;</code> or <code>.small-body-text</code></h6> <p class="small-body-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> </div> </div> </li> <li> <div class="row"> <div class="half"> <h6><code>.disclaimer-text</code></h6> <p class="disclaimer-text">The disclaimer is always 11px.<br><br> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum id molestie nunc. Suspendisse eu lorem ipsum, in luctus nunc. Etiam in sapien ut nunc cursus tempus non lacus.</p> </div> </div> </li> </ul> </div>
quattromani/qoppa
styleguide/typography/body_text/index.html
HTML
mit
2,146
<a href='https://github.com/angular/angular.js/edit/v1.3.x/src/ngMessages/messages.js?message=docs(ngMessage)%3A%20describe%20your%20change...#L317' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/v1.3.10/src/ngMessages/messages.js#L317' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in">&nbsp;</i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">ngMessage</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - directive in module <a href="api/ngMessages">ngMessages</a> </li> </ol> </header> <div class="api-profile-description"> <p><code>ngMessage</code> is a directive with the purpose to show and hide a particular message. For <code>ngMessage</code> to operate, a parent <code>ngMessages</code> directive on a parent DOM element must be situated since it determines which messages are visible based on the state of the provided key/value map that <code>ngMessages</code> listens on.</p> </div> <div> <h2>Directive Info</h2> <ul> <li>This directive creates new scope.</li> <li>This directive executes at priority level 0.</li> </ul> <h2 id="usage">Usage</h2> <div class="usage"> <pre><code class="lang-html">&lt;!-- using attribute directives --&gt; &lt;ANY ng-messages=&quot;expression&quot;&gt; &lt;ANY ng-message=&quot;keyValue1&quot;&gt;...&lt;/ANY&gt; &lt;ANY ng-message=&quot;keyValue2&quot;&gt;...&lt;/ANY&gt; &lt;ANY ng-message=&quot;keyValue3&quot;&gt;...&lt;/ANY&gt; &lt;/ANY&gt; &lt;!-- or by using element directives --&gt; &lt;ng-messages for=&quot;expression&quot;&gt; &lt;ng-message when=&quot;keyValue1&quot;&gt;...&lt;/ng-message&gt; &lt;ng-message when=&quot;keyValue2&quot;&gt;...&lt;/ng-message&gt; &lt;ng-message when=&quot;keyValue3&quot;&gt;...&lt;/ng-message&gt; &lt;/ng-messages&gt; </code></pre> <p><a href="api/ngMessages">Click here</a> to learn more about <code>ngMessages</code> and <code>ngMessage</code>.</p> </div> <section class="api-section"> <h3>Arguments</h3> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> ngMessage </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>a string value corresponding to the message key.</p> </td> </tr> </tbody> </table> </section> </div>
apulll/angular_study
lib/angular-1.3.10/docs/partials/api/ngMessages/directive/ngMessage.html
HTML
mit
2,704
<!DOCTYPE html> <html> <head> <meta content="application/xhtml+xml;charset=UTF-8" http-equiv="Content-Type"> <!--添加content="upgrade-insecure-requests"处理https加载http的资源:webpack开发时需要给devServer添加https:true--> <!--<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />--> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="renderer" content="webkit"> <meta content="yes" name="apple-mobile-web-app-capable"> <meta content="yes" name="apple-touch-fullscreen"> <!-- QQ强制竖屏 --> <meta name="x5-orientation" content="portrait"> <!-- UC强制竖屏 --> <meta name="screen-orientation" content="portrait"> <meta content="no-cache,must-revalidate" http-equiv="Cache-Control"> <meta content="no-cache" http-equiv="pragma"> <meta content="0" http-equiv="expires"> <meta content="telephone=no,email=no address=no" name="format-detection"> <meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"> <title>移动端公共模板</title> <!--<script>--> <!--var deviceWidth = document.documentElement.clientWidth;--> <!--if(deviceWidth > 640) deviceWidth = 640;--> <!--document.documentElement.style.fontSize = deviceWidth / 3.75 + 'px';--> <!--</script>--> </head> <body> <script> // 设置rem单位 var htmlDom = document.documentElement var clientWidth = htmlDom.clientWidth; if(clientWidth > 640) clientWidth = 640; htmlDom.style.fontSize = clientWidth / 3.75 + 'px'; // 创建新元素,用来判断rem单位的计算是否出错 var div = document.createElement('div') div.style.width = '1rem' div.style.height = '0' document.body.appendChild(div) var ideal = clientWidth / 3.75 // rem单位计算正确的数值(称为理想数值) var rmd = div.clientWidth / ideal // 计算真实的数值与理想rem数值的比例(如果为1,证明是rem单位正确计算了) console.log('真实的数值与理想rem数值的比例:',rmd) // 如果两者比例有0.2以上的出入,那就重置rem单位 // 囧,发现有些三星手机中,rmd比例稍微大于0.8,看来要修改差距了,换为1.2与0.85 // 囧,发现有谷歌手机中,rmd比例稍微小于1.14,看来要修改差距了,换为1.1与0.85 if(rmd > 1.1 || rmd < 0.85){ console.log('准备重置rem'); document.documentElement.style.fontSize = (clientWidth / 3.75) / rmd + 'px'; console.log('新的rem:',document.documentElement.style.fontSize); } document.body.removeChild(div); </script> <div id="app"> </div> </body> </html>
klhsb/mobile-common
webpack-config-singlePage/index.html
HTML
mit
2,773
<!doctype html> <html lang="en"> <head> <title>three.js webgl - geometry - shapes</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { font-family: Monospace; background-color: #f0f0f0; margin: 0px; overflow: hidden; } </style> </head> <body> <canvas id="debug" style="position:absolute; left:100px"></canvas> <script src="../build/Three.js"></script> <script src="js/Stats.js"></script> <script> var container, stats; var camera, scene, renderer; var text, plane; var targetRotation = 0; var targetRotationOnMouseDown = 0; var mouseX = 0; var mouseXOnMouseDown = 0; var windowHalfX = window.innerWidth / 2; var windowHalfY = window.innerHeight / 2; init(); animate(); function init() { container = document.createElement( 'div' ); document.body.appendChild( container ); var info = document.createElement( 'div' ); info.style.position = 'absolute'; info.style.top = '10px'; info.style.width = '100%'; info.style.textAlign = 'center'; info.innerHTML = 'Simple procedurally generated 3D shapes example by <a href="http://www.lab4games.net/zz85/blog">zz85</a><br/>Drag to spin'; container.appendChild( info ); scene = new THREE.Scene(); camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 1000 ); camera.position.set( 0, 150, 500 ); scene.add( camera ); var light = new THREE.DirectionalLight( 0xffffff ); light.position.set( 0, 0, 1 ); scene.add( light ); parent = new THREE.Object3D(); parent.position.y = 50; scene.add( parent ); function addGeometry( geometry, points, spacedPoints, color, x, y, z, rx, ry, rz, s ) { // 3d shape var mesh = THREE.SceneUtils.createMultiMaterialObject( geometry, [ new THREE.MeshLambertMaterial( { color: color } ), new THREE.MeshBasicMaterial( { color: 0x000000, wireframe: true, transparent: true } ) ] ); mesh.position.set( x, y, z - 75 ); mesh.rotation.set( rx, ry, rz ); mesh.scale.set( s, s, s ); parent.add( mesh ); // solid line var line = new THREE.Line( points, new THREE.LineBasicMaterial( { color: color, linewidth: 2 } ) ); line.position.set( x, y, z + 25 ); line.rotation.set( rx, ry, rz ); line.scale.set( s, s, s ); parent.add( line ); // transparent line from real points var line = new THREE.Line( points, new THREE.LineBasicMaterial( { color: color, opacity: 0.5 } ) ); line.position.set( x, y, z + 75 ); line.rotation.set( rx, ry, rz ); line.scale.set( s, s, s ); parent.add( line ); // vertices from real points var pgeo = THREE.GeometryUtils.clone( points ); var particles = new THREE.ParticleSystem( pgeo, new THREE.ParticleBasicMaterial( { color: color, size: 2, opacity: 0.75 } ) ); particles.position.set( x, y, z + 75 ); particles.rotation.set( rx, ry, rz ); particles.scale.set( s, s, s ); parent.add( particles ); // transparent line from equidistance sampled points var line = new THREE.Line( spacedPoints, new THREE.LineBasicMaterial( { color: color, opacity: 0.2 } ) ); line.position.set( x, y, z + 100 ); line.rotation.set( rx, ry, rz ); line.scale.set( s, s, s ); parent.add( line ); // equidistance sampled points var pgeo = THREE.GeometryUtils.clone( spacedPoints ); var particles2 = new THREE.ParticleSystem( pgeo, new THREE.ParticleBasicMaterial( { color: color, size: 2, opacity: 0.5 } ) ); particles2.position.set( x, y, z + 100 ); particles2.rotation.set( rx, ry, rz ); particles2.scale.set( s, s, s ); parent.add( particles2 ); } var extrudeSettings = { amount: 20, bevelEnabled: true, bevelSegments: 2, steps: 2 }; // bevelSegments: 2, steps: 2 , bevelSegments: 5, bevelSize: 8, bevelThickness:5, // California var californiaPts = []; californiaPts.push( new THREE.Vector2 ( 610, 320 ) ); californiaPts.push( new THREE.Vector2 ( 450, 300 ) ); californiaPts.push( new THREE.Vector2 ( 392, 392 ) ); californiaPts.push( new THREE.Vector2 ( 266, 438 ) ); californiaPts.push( new THREE.Vector2 ( 190, 570 ) ); californiaPts.push( new THREE.Vector2 ( 190, 600 ) ); californiaPts.push( new THREE.Vector2 ( 160, 620 ) ); californiaPts.push( new THREE.Vector2 ( 160, 650 ) ); californiaPts.push( new THREE.Vector2 ( 180, 640 ) ); californiaPts.push( new THREE.Vector2 ( 165, 680 ) ); californiaPts.push( new THREE.Vector2 ( 150, 670 ) ); californiaPts.push( new THREE.Vector2 ( 90, 737 ) ); californiaPts.push( new THREE.Vector2 ( 80, 795 ) ); californiaPts.push( new THREE.Vector2 ( 50, 835 ) ); californiaPts.push( new THREE.Vector2 ( 64, 870 ) ); californiaPts.push( new THREE.Vector2 ( 60, 945 ) ); californiaPts.push( new THREE.Vector2 ( 300, 945 ) ); californiaPts.push( new THREE.Vector2 ( 300, 743 ) ); californiaPts.push( new THREE.Vector2 ( 600, 473 ) ); californiaPts.push( new THREE.Vector2 ( 626, 425 ) ); californiaPts.push( new THREE.Vector2 ( 600, 370 ) ); californiaPts.push( new THREE.Vector2 ( 610, 320 ) ); var californiaShape = new THREE.Shape( californiaPts ); var california3d = new THREE.ExtrudeGeometry( californiaShape, { amount: 20 } ); var californiaPoints = californiaShape.createPointsGeometry(); var californiaSpacedPoints = californiaShape.createSpacedPointsGeometry( 100 ); // Triangle var triangleShape = new THREE.Shape(); triangleShape.moveTo( 80, 20 ); triangleShape.lineTo( 40, 80 ); triangleShape.lineTo( 120, 80 ); triangleShape.lineTo( 80, 20 ); // close path var triangle3d = triangleShape.extrude( extrudeSettings ); var trianglePoints = triangleShape.createPointsGeometry(); var triangleSpacedPoints = triangleShape.createSpacedPointsGeometry(); // Heart var x = 0, y = 0; var heartShape = new THREE.Shape(); // From http://blog.burlock.org/html5/130-paths heartShape.moveTo( x + 25, y + 25 ); heartShape.bezierCurveTo( x + 25, y + 25, x + 20, y, x, y ); heartShape.bezierCurveTo( x - 30, y, x - 30, y + 35,x - 30,y + 35 ); heartShape.bezierCurveTo( x - 30, y + 55, x - 10, y + 77, x + 25, y + 95 ); heartShape.bezierCurveTo( x + 60, y + 77, x + 80, y + 55, x + 80, y + 35 ); heartShape.bezierCurveTo( x + 80, y + 35, x + 80, y, x + 50, y ); heartShape.bezierCurveTo( x + 35, y, x + 25, y + 25, x + 25, y + 25 ); var heart3d = heartShape.extrude( extrudeSettings ); var heartPoints = heartShape.createPointsGeometry(); var heartSpacedPoints = heartShape.createSpacedPointsGeometry(); //heartShape.debug( document.getElementById("debug") ); // Square var sqLength = 80; var squareShape = new THREE.Shape(); squareShape.moveTo( 0,0 ); squareShape.lineTo( 0, sqLength ); squareShape.lineTo( sqLength, sqLength ); squareShape.lineTo( sqLength, 0 ); squareShape.lineTo( 0, 0 ); var square3d = squareShape.extrude( extrudeSettings ); var squarePoints = squareShape.createPointsGeometry(); var squareSpacedPoints = squareShape.createSpacedPointsGeometry(); // Rectangle var rectLength = 120, rectWidth = 40; var rectShape = new THREE.Shape(); rectShape.moveTo( 0,0 ); rectShape.lineTo( 0, rectWidth ); rectShape.lineTo( rectLength, rectWidth ); rectShape.lineTo( rectLength, 0 ); rectShape.lineTo( 0, 0 ); var rect3d = rectShape.extrude( extrudeSettings ); var rectPoints = rectShape.createPointsGeometry(); var rectSpacedPoints = rectShape.createSpacedPointsGeometry(); // Rounded rectangle var roundedRectShape = new THREE.Shape(); roundedRect( roundedRectShape, 0, 0, 50, 50, 20 ); var roundedRect3d = roundedRectShape.extrude( extrudeSettings ); var roundedRectPoints = roundedRectShape.createPointsGeometry(); var roundedRectSpacedPoints = roundedRectShape.createSpacedPointsGeometry(); function roundedRect( ctx, x, y, width, height, radius ){ ctx.moveTo( x, y + radius ); ctx.lineTo( x, y + height - radius ); ctx.quadraticCurveTo( x, y + height, x + radius, y + height ); ctx.lineTo( x + width - radius, y + height) ; ctx.quadraticCurveTo( x + width, y + height, x + width, y + height - radius ); ctx.lineTo( x + width, y + radius ); ctx.quadraticCurveTo( x + width, y, x + width - radius, y ); ctx.lineTo( x + radius, y ); ctx.quadraticCurveTo( x, y, x, y + radius ); } // Circle var circleRadius = 40; var circleShape = new THREE.Shape(); circleShape.moveTo( 0, circleRadius ); circleShape.quadraticCurveTo( circleRadius, circleRadius, circleRadius, 0 ); circleShape.quadraticCurveTo( circleRadius, -circleRadius, 0, -circleRadius ); circleShape.quadraticCurveTo( -circleRadius, -circleRadius, -circleRadius, 0 ); circleShape.quadraticCurveTo( -circleRadius, circleRadius, 0, circleRadius ); var circle3d = circleShape.extrude( extrudeSettings ); var circlePoints = circleShape.createPointsGeometry(); var circleSpacedPoints = circleShape.createSpacedPointsGeometry(); // Fish x = y = 0; var fishShape = new THREE.Shape(); fishShape.moveTo(x,y); fishShape.quadraticCurveTo(x + 50, y - 80, x + 90, y - 10); fishShape.quadraticCurveTo(x + 100, y - 10, x + 115, y - 40); fishShape.quadraticCurveTo(x + 115, y, x + 115, y + 40); fishShape.quadraticCurveTo(x + 100, y + 10, x + 90, y + 10); fishShape.quadraticCurveTo(x + 50, y + 80, x, y); var fish3d = fishShape.extrude( extrudeSettings ); var fishPoints = fishShape.createPointsGeometry(); var fishSpacedPoints = fishShape.createSpacedPointsGeometry(); // Arc circle var arcShape = new THREE.Shape(); arcShape.moveTo( 50, 10 ); arcShape.arc( 10, 10, 40, 0, Math.PI*2, false ); var holePath = new THREE.Path(); holePath.moveTo( 20, 10 ); holePath.arc( 10, 10, 10, 0, Math.PI*2, true ); arcShape.holes.push( holePath ); var arc3d = arcShape.extrude( extrudeSettings ); var arcPoints = arcShape.createPointsGeometry(); var arcSpacedPoints = arcShape.createSpacedPointsGeometry(); // Smiley var smileyShape = new THREE.Shape(); smileyShape.moveTo( 80, 40 ); smileyShape.arc( 40, 40, 40, 0, Math.PI*2, false ); var smileyEye1Path = new THREE.Path(); smileyEye1Path.moveTo( 35, 20 ); smileyEye1Path.arc( 25, 20, 10, 0, Math.PI*2, true ); smileyShape.holes.push( smileyEye1Path ); var smileyEye2Path = new THREE.Path(); smileyEye2Path.moveTo( 65, 20 ); smileyEye2Path.arc( 55, 20, 10, 0, Math.PI*2, true ); smileyShape.holes.push( smileyEye2Path ); var smileyMouthPath = new THREE.Path(); // ugly box mouth // smileyMouthPath.moveTo( 20, 40 ); // smileyMouthPath.lineTo( 60, 40 ); // smileyMouthPath.lineTo( 60, 60 ); // smileyMouthPath.lineTo( 20, 60 ); // smileyMouthPath.lineTo( 20, 40 ); smileyMouthPath.moveTo( 20, 40 ); smileyMouthPath.quadraticCurveTo( 40, 60, 60, 40 ); smileyMouthPath.bezierCurveTo( 70, 45, 70, 50, 60, 60 ); smileyMouthPath.quadraticCurveTo( 40, 80, 20, 60 ); smileyMouthPath.quadraticCurveTo( 5, 50, 20, 40 ); smileyShape.holes.push( smileyMouthPath ); var smiley3d = smileyShape.extrude( extrudeSettings ); var smileyPoints = smileyShape.createPointsGeometry(); var smileySpacedPoints = smileyShape.createSpacedPointsGeometry(); // Spline shape + path extrusion var splinepts = []; splinepts.push( new THREE.Vector2 ( 350, 100 ) ); splinepts.push( new THREE.Vector2 ( 400, 450 ) ); splinepts.push( new THREE.Vector2 ( -140, 350 ) ); splinepts.push( new THREE.Vector2 ( 0, 0 ) ); var splineShape = new THREE.Shape( ); splineShape.moveTo( 0, 0 ); splineShape.splineThru( splinepts ); //splineShape.debug( document.getElementById("debug") ); // TODO 3d path? var apath = new THREE.SplineCurve3(); apath.points.push(new THREE.Vector3(-50, 150, 10)); apath.points.push(new THREE.Vector3(-20, 180, 20)); apath.points.push(new THREE.Vector3(40, 220, 50)); apath.points.push(new THREE.Vector3(200, 290, 100)); extrudeSettings.extrudePath = apath; extrudeSettings.bevelEnabled = false; extrudeSettings.steps = 20; var splineShape3d = splineShape.extrude( extrudeSettings ); var splinePoints = splineShape.createPointsGeometry( ); var splineSpacedPoints = splineShape.createSpacedPointsGeometry( ); addGeometry( california3d, californiaPoints, californiaSpacedPoints, 0xffaa00, -300, -100, 0, 0, 0, 0, 0.25 ); addGeometry( triangle3d, trianglePoints, triangleSpacedPoints, 0xffee00, -180, 0, 0, 0, 0, 0, 1 ); addGeometry( roundedRect3d, roundedRectPoints, roundedRectSpacedPoints, 0x005500, -150, 150, 0, 0, 0, 0, 1 ); addGeometry( square3d, squarePoints, squareSpacedPoints, 0x0055ff, 150, 100, 0, 0, 0, 0, 1 ); addGeometry( heart3d, heartPoints, heartSpacedPoints, 0xff1100, 0, 100, 0, Math.PI, 0, 0, 1 ); addGeometry( circle3d, circlePoints, circleSpacedPoints, 0x00ff11, 120, 250, 0, 0, 0, 0, 1 ); addGeometry( fish3d, fishPoints, fishSpacedPoints, 0x222222, -60, 200, 0, 0, 0, 0, 1 ); addGeometry( splineShape3d, splinePoints, splineSpacedPoints, 0x888888, -50, -100, -50, 0, 0, 0, 0.2 ); addGeometry( arc3d, arcPoints, arcSpacedPoints, 0xbb4422, 150, 0, 0, 0, 0, 0, 1 ); addGeometry( smiley3d, smileyPoints, smileySpacedPoints, 0xee00ff, -270, 250, 0, Math.PI, 0, 0, 1 ); // renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); stats = new Stats(); stats.domElement.style.position = 'absolute'; stats.domElement.style.top = '0px'; container.appendChild( stats.domElement ); document.addEventListener( 'mousedown', onDocumentMouseDown, false ); document.addEventListener( 'touchstart', onDocumentTouchStart, false ); document.addEventListener( 'touchmove', onDocumentTouchMove, false ); } // function onDocumentMouseDown( event ) { event.preventDefault(); document.addEventListener( 'mousemove', onDocumentMouseMove, false ); document.addEventListener( 'mouseup', onDocumentMouseUp, false ); document.addEventListener( 'mouseout', onDocumentMouseOut, false ); mouseXOnMouseDown = event.clientX - windowHalfX; targetRotationOnMouseDown = targetRotation; } function onDocumentMouseMove( event ) { mouseX = event.clientX - windowHalfX; targetRotation = targetRotationOnMouseDown + ( mouseX - mouseXOnMouseDown ) * 0.02; } function onDocumentMouseUp( event ) { document.removeEventListener( 'mousemove', onDocumentMouseMove, false ); document.removeEventListener( 'mouseup', onDocumentMouseUp, false ); document.removeEventListener( 'mouseout', onDocumentMouseOut, false ); } function onDocumentMouseOut( event ) { document.removeEventListener( 'mousemove', onDocumentMouseMove, false ); document.removeEventListener( 'mouseup', onDocumentMouseUp, false ); document.removeEventListener( 'mouseout', onDocumentMouseOut, false ); } function onDocumentTouchStart( event ) { if ( event.touches.length == 1 ) { event.preventDefault(); mouseXOnMouseDown = event.touches[ 0 ].pageX - windowHalfX; targetRotationOnMouseDown = targetRotation; } } function onDocumentTouchMove( event ) { if ( event.touches.length == 1 ) { event.preventDefault(); mouseX = event.touches[ 0 ].pageX - windowHalfX; targetRotation = targetRotationOnMouseDown + ( mouseX - mouseXOnMouseDown ) * 0.05; } } // function animate() { requestAnimationFrame( animate ); render(); stats.update(); } function render() { parent.rotation.y += ( targetRotation - parent.rotation.y ) * 0.05; renderer.render( scene, camera ); } </script> </body> </html>
yeuchi/Decoders4Three.js
examples/webgl_geometry_shapes.html
HTML
mit
16,395
<!DOCTYPE html> <html> <head> <title>Chapter 11: “Jinjur’s Ranch” | The Tin Woodman of Oz | L. Frank Baum | Lit2Go ETC</title> <link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/screenless.css" type="text/css" media="screen" title="no title" charset="utf-8"> <link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/printless.css" type="text/css" media="print" title="no title" charset="utf-8"> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/js.min.js"></script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-5574891-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); $(document).ready(function() { $('img').unveil(); $('#contactable').contactable({ url: 'http://etc.usf.edu/lit2go/welcome/feedback/', subject: 'Lit2Go Feedback — Chapter 11: “Jinjur’s Ranch” | The Tin Woodman of Oz | L. Frank Baum — http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1336/chapter-11-jinjurs-ranch/' }); }); </script> </head> <body> <div class="page"> <header> <h1> <a href="http://etc.usf.edu/lit2go/">Lit<span class="blue">2</span>Go</a> </h1> <ul> <li id="search"><form action="http://etc.usf.edu/lit2go/search/"><input type="text" name="q" placeholder="Search" value=""></form></li> </ul> </header> <nav id="shell"> <ul> <li><a href="http://etc.usf.edu/lit2go/authors/" class="">Authors</a></li> <li><a href="http://etc.usf.edu/lit2go/books/" class="selected">Books</a></li> <li><a href="http://etc.usf.edu/lit2go/genres/" class="">Genres</a></li> <li><a href="http://etc.usf.edu/lit2go/collections/" class="">Collections</a></li> <li><a href="http://etc.usf.edu/lit2go/readability/" class="">Readability</a></li> </ul> </nav> <section id="content"> <div id="contactable"><!-- contactable html placeholder --></div> <div id="page_content"> <header> <h2> <a href="http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/">The Tin Woodman of Oz</a> </h2> <h3> by <a href="http://etc.usf.edu/lit2go/authors/29/l-frank-baum/">L. Frank Baum</a> </h3> <h4> Chapter 11: “Jinjur’s Ranch” </h4> </header> <div id="default"> <details open> <summary> Additional Information </summary> <div id="columns"> <ul> <li> <strong>Year Published:</strong> 1918 </li> <li> <strong>Language:</strong> English </li> <li> <strong>Country of Origin:</strong> United States of America </li> <li> <strong>Source:</strong> Baum, L. F. (1918). <em>The Tin Woodman of Oz.</em> J. R. Neill (Ed.). </li> </ul> </div> <div id="columns"> <ul> <li> <strong>Readability:</strong> <ul> <li> Flesch–Kincaid Level: <a href="http://etc.usf.edu/lit2go/readability/flesch_kincaid_grade_level/7/" title="Flesch–Kincaid Grade Level 7.0">7.0</a> </li> </ul> </li> <li> <strong>Word Count:</strong> 1,892 </li> </ul> </div> <div id="columns"> <ul> <li> <strong>Genre:</strong> <a href="http://etc.usf.edu/lit2go/genres/1/fantasy/">Fantasy</a> </li> <li> <strong>Keywords:</strong> 20th century literature, american literature, books of oz, children's literature, fantasy, l. frank baum </li> <li> <a class="btn" data-toggle="modal" href="#cite_this" >✎ Cite This</a> </li> <li> <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a addthis:ui_delay="500" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=roywinkelman" class="addthis_button_compact">Share</a> <span class="addthis_separator">|</span> <a class="addthis_button_preferred_1"></a> <a class="addthis_button_preferred_2"></a> <a class="addthis_button_preferred_3"></a> <a class="addthis_button_preferred_4"></a> </div> <script type="text/javascript">$($.getScript("http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"))</script> <!-- <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"></script> --> <!-- AddThis Button END --> </li> </ul> </div> <h4>Downloads</h4> <ul id="downloads"> <li> <a href="http://etc.usf.edu/lit2go/audio/mp3/the-tin-woodman-of-oz-011-chapter-11-jinjurs-ranch.1336.mp3">Audio</a> </li> <li> <a href="http://etc.usf.edu/lit2go/pdf/passage/1336/the-tin-woodman-of-oz-011-chapter-11-jinjurs-ranch.pdf">Passage PDF</a> </li> <li><a href="http://etc.usf.edu/lit2go/pdf/student_activity/1336/1336-1.pdf">Student Activity</a></li> </ul> <hr> </details> <div class="modal hide" id="cite_this"> <script> $($('#myTab a').click(function (e) {e.preventDefault();$('#myTab a[href="#apa"]').tab('show');})); </script> <nav> <ul id="myTab"> <li class="active"> <a href="#apa" data-toggle="tab">APA</a> </li> <li> <a href="#mla" data-toggle="tab">MLA</a> </li> <li> <a href="#chicago" data-toggle="tab">Chicago</a> </li> </ul> </nav> <div class="tab-content"> <div class="content tab-pane hide active" id="apa"> <p class="citation"> Baum, L. (1918). Chapter 11: “Jinjur’s Ranch”. <em>The Tin Woodman of Oz</em> (Lit2Go Edition). Retrieved February 15, 2016, from <span class="faux_link">http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1336/chapter-11-jinjurs-ranch/</span> </p> </div> <div class="content tab-pane" id="mla"> <p class="citation"> Baum, L. Frank. "Chapter 11: “Jinjur’s Ranch”." <em>The Tin Woodman of Oz</em>. Lit2Go Edition. 1918. Web. <<span class="faux_link">http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1336/chapter-11-jinjurs-ranch/</span>>. February 15, 2016. </p> </div> <div class="content tab-pane" id="chicago"> <p class="citation"> L. Frank Baum, "Chapter 11: “Jinjur’s Ranch”," <em>The Tin Woodman of Oz</em>, Lit2Go Edition, (1918), accessed February 15, 2016, <span class="faux_link">http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1336/chapter-11-jinjurs-ranch/</span>. </p> </div> </div> </div> <span class="top"> <nav class="passage"> <ul> <li><a href="http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1335/chapter-10-tommy-kwikstep/" title="Chapter 10: “Tommy Kwikstep”" class="back">Back</a></li> <li><a href="http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1337/chapter-12-ozma-and-dorothy/" title="Chapter 12: “Ozma and Dorothy”" class="next">Next</a></li> </ul> </nav> </span> <div id="shrink_wrap"> <div id="i_apologize_for_the_soup"> <audio controls style="width:99%;"> <source src="http://etc.usf.edu/lit2go/audio/mp3/the-tin-woodman-of-oz-011-chapter-11-jinjurs-ranch.1336.mp3" type="audio/mpeg" /> <source src="http://etc.usf.edu/lit2go/audio/ogg/the-tin-woodman-of-oz-011-chapter-11-jinjurs-ranch.1336.ogg" type="audio/ogg" /> The embedded audio player requires a modern internet browser. You should visit <a href="http://browsehappy.com/">Browse Happy</a> and update your internet browser today! </audio> <p> As they followed a path down the blue-grass hillside, the first house that met the view of the travelers was joyously recognized by the Scarecrow Bear as the one inhabited by his friend Jinjur, so they increased their speed and hurried toward it.<br /> On reaching the place, however, they found the house deserted. The front door stood open, but no one was inside. In the garden surrounding the house were neat rows of bushes bearing cream-puffs and macaroons, some of which were still green, but others ripe and ready to eat. Farther back were fields of caramels, and all the land seemed well cultivated and carefully tended. They looked through the fields for the girl farmer, but she was nowhere to be seen.</p> <p> &ldquo;Well,&rdquo; finally remarked the little Brown Bear, &ldquo;let us go into the house and make ourselves at home. That will be sure to please my friend Jinjur, who happens to be away from home just now. When she returns, she will be greatly surprised.&rdquo;</p> <p> &ldquo;Would she care if I ate some of those ripe cream-puffs?&rdquo; asked the Green Monkey.</p> <p> &ldquo;No, indeed; Jinjur is very generous. Help yourself to all you want,&rdquo; said the Scarecrow Bear.</p> <p> So Woot gathered a lot of the cream-puffs that were golden yellow and filled with a sweet, creamy substance, and ate until his hunger was satisfied. Then he entered the house with his friends and sat in a rocking-chair&mdash;just as he was accustomed to do when a boy. The Canary perched herself upon the mantel and daintily plumed her feathers; the Tin Owl sat on the back of another chair; the Scarecrow squatted on his hairy haunches in the middle of the room.</p> <p> &ldquo;I believe I remember the girl Jinjur,&rdquo; remarked the Canary, in her sweet voice. &ldquo;She cannot help us very much, except to direct us on our way to Glinda&rsquo;s castle, for she does not understand magic. But she&rsquo;s a good girl, honest and sensible, and I&rsquo;ll be glad to see her.&rdquo;</p> <p> &ldquo;All our troubles,&rdquo; said the Owl with a deep sigh, &ldquo;arose from my foolish resolve to seek Nimmie Amee and make her Empress of the Winkies, and while I wish to reproach no one, I must say that it was Woot the Wanderer who put the notion into my head.&rdquo;</p> <p> &ldquo;Well, for my part, I am glad he did,&rdquo; responded the Canary. &ldquo;Your journey resulted in saving me from the Giantess, and had you not traveled to the Yoop Valley, I would still be Mrs. Yoop&rsquo;s prisoner. It is much nicer to be free, even though I still bear the enchanted form of a Canary-Bird.&rdquo;</p> <p> &ldquo;Do you think we shall ever be able to get our proper forms back again?&rdquo; asked the Green Monkey earnestly.</p> <p> Polychrome did not make reply at once to this important question, but after a period of thoughtfulness she said:</p> <p> &ldquo;I have been taught to believe that there is an antidote for every magic charm, yet Mrs. Yoop insists that no power can alter her transformations. I realize that my own fairy magic cannot do it, although I have thought that we Sky Fairies have more power than is accorded to Earth Fairies. The Yookoohoo magic is admitted to be very strange in its workings and different from the magic usually practiced, but perhaps Glinda or Ozma may understand it better than I. In them lies our only hope. Unless they can help us, we must remain forever as we are.&rdquo;</p> <p> &ldquo;A Canary-Bird on a Rainbow wouldn&rsquo;t be so bad,&rdquo; asserted the Tin Owl, winking and blinking with his round tin eyes, &ldquo;so if you can manage to find your Rainbow again you need have little to worry about.&rdquo;</p> <p> &ldquo;That&rsquo;s nonsense, Friend Chopper,&rdquo; exclaimed Woot. &ldquo;I know just how Polychrome feels. A beautiful girl is much superior to a little yellow bird, and a boy&mdash;such as I was&mdash;far better than a Green Monkey. Neither of us can be happy again unless we recover our rightful forms.&rdquo;</p> <p> &ldquo;I feel the same way,&rdquo; announced the stuffed Bear. &ldquo;What do you suppose my friend the Patchwork Girl would think of me, if she saw me wearing this beastly shape?&rdquo;</p> <p> &ldquo;She&rsquo;d laugh till she cried,&rdquo; admitted the Tin Owl. &ldquo;For my part, I&rsquo;ll have to give up the notion of marrying Nimmie Amee, but I&rsquo;ll try not to let that make me unhappy. If it&rsquo;s my duty, I&rsquo;d like to do my duty, but if magic prevents my getting married I&rsquo;ll flutter along all by myself and be just as contented.&rdquo;</p> <p> Their serious misfortunes made them all silent for a time, and as their thoughts were busy in dwelling upon the evils with which fate had burdened them, none noticed that Jinjur had suddenly appeared in the doorway and was looking at them in astonishment. The next moment her astonishment changed to anger, for there, in her best rocking-chair, sat a Green Monkey. A great shiny Owl perched upon another chair and a Brown Bear squatted upon her parlor rug. Jinjur did not notice the Canary, but she caught up a broomstick and dashed into the room, shouting as she came:</p> <p> &ldquo;Get out of here, you wild creatures! How dare you enter my house?&rdquo;</p> <p> With a blow of her broom she knocked the Brown Bear over, and the Tin Owl tried to fly out of her reach and made a great clatter with his tin wings. The Green Monkey was so startled by the sudden attack that he sprang into the fireplace&mdash;where there was fortunately no fire&mdash;and tried to escape by climbing up the chimney. But he found the opening too small, and so was forced to drop down again. Then he crouched trembling in the fireplace, his pretty green hair all blackened with soot and covered with ashes. From this position Woot watched to see what would happen next.</p> <p> &ldquo;Stop, Jinjur&mdash;stop!&rdquo; cried the Brown Bear, when the broom again threatened him. &ldquo;Don&rsquo;t you know me? I&rsquo;m your old friend the Scarecrow!&rdquo;</p> <p> &ldquo;You&rsquo;re trying to deceive me, you naughty beast! I can see plainly that you are a bear, and a mighty poor specimen of a bear, too,&rdquo; retorted the girl.</p> <p> &ldquo;That&rsquo;s because I&rsquo;m not properly stuffed,&rdquo; he assured her. &ldquo;When Mrs. Yoop transformed me, she didn&rsquo;t realize I should have more stuffing.&rdquo;</p> <p> &ldquo;Who is Mrs. Yoop?&rdquo; inquired Jinjur, pausing with the broom still upraised.</p> <p> &ldquo;A Giantess in the Gillikin Country.&rdquo;</p> <p> &ldquo;Oh; I begin to understand. And Mrs. Yoop transformed you? You are really the famous Scarecrow of Oz?&rdquo;</p> <p> &ldquo;I was, Jinjur. Just now I&rsquo;m as you see me&mdash;a miserable little Brown Bear with a poor quality of stuffing. That Tin Owl is none other than our dear Tin Woodman&mdash;Nick Chopper, the Emperor of the Winkies&mdash;while this Green Monkey is a nice little boy we recently became acquainted with, Woot the Wanderer.&rdquo;</p> <p> &ldquo;And I,&rdquo; said the Canary, flying close to Jinjur, &ldquo;am Polychrome, the Daughter of the Rainbow, in the form of a bird.&rdquo;</p> <p> &ldquo;Goodness me!&rdquo; cried Jinjur, amazed; &ldquo;that Giantess must be a powerful Sorceress, and as wicked as she is powerful.&rdquo;</p> <p> &ldquo;She&rsquo;s a Yookoohoo,&rdquo; said Polychrome. &ldquo;Fortunately, we managed to escape from her castle, and we are now on our way to Glinda the Good to see if she possesses the power to restore us to our former shapes.&rdquo;</p> <p> &ldquo;Then I must beg your pardons; all of you must forgive me,&rdquo; said Jinjur, putting away the broom. &ldquo;I took you to be a lot of wild, unmannerly animals, as was quite natural. You are very welcome to my home and I&rsquo;m sorry I haven&rsquo;t the power to help you out of your troubles. Please use my house and all that I have, as if it were your own.&rdquo;</p> <p> At this declaration of peace, the Bear got upon his feet and the Owl resumed his perch upon the chair and the Monkey crept out of the fireplace. Jinjur looked at Woot critically, and scowled.</p> <p> &ldquo;For a Green Monkey,&rdquo; said she, &ldquo;you&rsquo;re the blackest creature I ever saw. And you&rsquo;ll get my nice clean room all dirty with soot and ashes. Whatever possessed you to jump up the chimney?&rdquo;</p> <p> &ldquo;I&mdash;I was scared,&rdquo; explained Woot, somewhat ashamed.</p> <p> &ldquo;Well, you need renovating, and that&rsquo;s what will happen to you, right away. Come with me!&rdquo; she commanded.</p> <p> &ldquo;What are you going to do?&rdquo; asked Woot.</p> <p> &ldquo;Give you a good scrubbing,&rdquo; said Jinjur.</p> <p> Now, neither boys nor monkeys relish being scrubbed, so Woot shrank away from the energetic girl, trembling fearfully. But Jinjur grabbed him by his paw and dragged him out to the back yard, where, in spite of his whines and struggles, she plunged him into a tub of cold water and began to scrub him with a stiff brush and a cake of yellow soap.</p> <p> This was the hardest trial that Woot had endured since he became a monkey, but no protest had any influence with Jinjur, who lathered and scrubbed him in a business-like manner and afterward dried him with a coarse towel.</p> <p> The Bear and the Owl gravely watched this operation and nodded approval when Woot&rsquo;s silky green fur shone clear and bright in the afternoon sun. The Canary seemed much amused and laughed a silvery ripple of laughter as she said:</p> <p> &ldquo;Very well done, my good Jinjur; I admire your energy and judgment. But I had no idea a monkey could look so comical as this monkey did while he was being bathed.&rdquo;</p> <p> &ldquo;I&rsquo;m not a monkey!&rdquo; declared Woot, resentfully; &ldquo;I&rsquo;m just a boy in a monkey&rsquo;s shape, that&rsquo;s all.&rdquo;</p> <p> &ldquo;If you can explain to me the difference,&rdquo; said Jinjur, &ldquo;I&rsquo;ll agree not to wash you again&mdash;that is, unless you foolishly get into the fireplace. All persons are usually judged by the shapes in which they appear to the eyes of others. Look at me, Woot; what am I?&rdquo;</p> <p> Woot looked at her.</p> <p> &ldquo;You&rsquo;re as pretty a girl as I&rsquo;ve ever seen,&rdquo; he replied.</p> <p> Jinjur frowned. That is, she tried hard to frown.</p> <p> &ldquo;Come out into the garden with me,&rdquo; she said, &ldquo;and I&rsquo;ll give you some of the most delicious caramels you ever ate. They&rsquo;re a new variety, that no one can grow but me, and they have a heliotrope flavor.&rdquo;</p> </div> </div> <span class="bottom"> <nav class="passage"> <ul> <li><a href="http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1335/chapter-10-tommy-kwikstep/" title="Chapter 10: “Tommy Kwikstep”" class="back">Back</a></li> <li><a href="http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1337/chapter-12-ozma-and-dorothy/" title="Chapter 12: “Ozma and Dorothy”" class="next">Next</a></li> </ul> </nav> </span> </div> </div> </section> <footer screen> <div id="footer-text"> <p> This collection of children's literature is a part of the <a href="http://etc.usf.edu/">Educational Technology Clearinghouse</a> and is funded by various <a href="http://etc.usf.edu/lit2go/welcome/funding/">grants</a>. </p> <p> Copyright &copy; 2006&mdash;2016 by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>, <a href="http://www.coedu.usf.edu/">College of Education</a>, <a href="http://www.usf.edu/">University of South Florida</a>. </p> </div> <ul id="footer-links"> <li><a href="http://etc.usf.edu/lit2go/welcome/license/">License</a></li> <li><a href="http://etc.usf.edu/lit2go/welcome/credits/">Credits</a></li> <li><a href="http://etc.usf.edu/lit2go/welcome/faq/">FAQ</a></li> <li><a href="http://etc.usf.edu/lit2go/giving/">Giving</a></li> </ul> </footer> <footer print> <div id="footer-text"> <p>This document was downloaded from <a href="http://etc.usf.edu/lit2go/">Lit2Go</a>, a free online collection of stories and poems in Mp3 (audiobook) format published by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>. For more information, including classroom activities, readability data, and original sources, please visit <a href="http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1336/chapter-11-jinjurs-ranch/">http://etc.usf.edu/lit2go/25/the-tin-woodman-of-oz/1336/chapter-11-jinjurs-ranch/</a>.</p> </div> <div id="book-footer"> <p>Lit2Go: <em>The Tin Woodman of Oz</em></p> <p>Chapter 11: “Jinjur’s Ranch”</p> </div> </footer> <script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/details.js"></script> </div> </body> </html>
adrianosb/HtmlToText
lit2go.ok/25/the-tin-woodman-of-oz/1336/chapter-11-jinjurs-ranch/index.html
HTML
mit
21,895
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link rel="stylesheet" href="../../helpwin.css"> <title>MATLAB File Help: prtDataSetBase.retainObservationInfo</title> </head> <body> <!--Single-page help--> <table border="0" cellspacing="0" width="100%"> <tr class="subheader"> <td class="headertitle">MATLAB File Help: prtDataSetBase.retainObservationInfo</title></td> </tr> </table> <div class="title">prtDataSetBase.retainObservationInfo</title></div> <div class="helptext"><pre><!--helptext --> Help Not Available</title> - No additional information is available at this time.</pre></div><!--after help --> </body> </html>
jpalves/PRT
doc/functionReference/prtDataSetBase/retainObservationInfo.html
HTML
mit
754
{% include header.html %} <div class="container" id="content"> {{ content }} </div> {% include footer.html %} </body> </html>
yrahman/id-laravel.github.io
_layouts/empty.html
HTML
mit
133
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="robots" content="index, follow, all" /> <title>Thelia\Core\Event\Administrator\AdministratorEvent | Thelia 2 API</title> <link rel="stylesheet" type="text/css" href="../../../../css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="../../../../css/bootstrap-theme.min.css"> <link rel="stylesheet" type="text/css" href="../../../../css/sami.css"> <script src="../../../../js/jquery-1.11.1.min.js"></script> <script src="../../../../js/bootstrap.min.js"></script> <script src="../../../../js/typeahead.min.js"></script> <script src="../../../../sami.js"></script> <meta name="MobileOptimized" content="width"> <meta name="HandheldFriendly" content="true"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"> </head> <body id="class" data-name="class:Thelia_Core_Event_Administrator_AdministratorEvent" data-root-path="../../../../"> <div id="content"> <div id="left-column"> <div id="control-panel"> <form id="search-form" action="../../../../search.html" method="GET"> <span class="glyphicon glyphicon-search"></span> <input name="search" class="typeahead form-control" type="search" placeholder="Search"> </form> </div> <div id="api-tree"></div> </div> <div id="right-column"> <nav id="site-nav" class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../../../../index.html">Thelia 2 API</a> </div> <div class="collapse navbar-collapse" id="navbar-elements"> <ul class="nav navbar-nav"> <li><a href="../../../../classes.html">Classes</a></li> <li><a href="../../../../namespaces.html">Namespaces</a></li> <li><a href="../../../../interfaces.html">Interfaces</a></li> <li><a href="../../../../traits.html">Traits</a></li> <li><a href="../../../../doc-index.html">Index</a></li> <li><a href="../../../../search.html">Search</a></li> </ul> </div> </div> </nav> <div class="namespace-breadcrumbs"> <ol class="breadcrumb"> <li><span class="label label-default">class</span></li> <li><a href="../../../../Thelia.html">Thelia</a></li> <li><a href="../../../../Thelia/Core.html">Core</a></li> <li><a href="../../../../Thelia/Core/Event.html">Event</a></li> <li><a href="../../../../Thelia/Core/Event/Administrator.html">Administrator</a></li> <li>AdministratorEvent</li> </ol> </div> <div id="page-content"> <div class="page-header"> <h1>AdministratorEvent</h1> </div> <p> class <strong>AdministratorEvent</strong> extends <a href="../../../../Thelia/Core/Event/ActionEvent.html"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a> </p> <h2>Methods</h2> <div class="container-fluid underlined"> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___set">__set</a>($name, $value) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/ActionEvent.html#method___set"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___get">__get</a>($name) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/ActionEvent.html#method___get"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___construct">__construct</a>( <abbr title="Thelia\Core\Event\Administrator\Thelia\Model\Admin">Admin</abbr> $administrator = null) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_hasAdministrator">hasAdministrator</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getAdministrator">getAdministrator</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setAdministrator">setAdministrator</a>( <abbr title="Thelia\Core\Event\Administrator\Thelia\Model\Admin">Admin</abbr> $administrator) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setId">setId</a>($id) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getId">getId</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setFirstname">setFirstname</a>($firstname) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getFirstname">getFirstname</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setLastname">setLastname</a>($lastname) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getLastname">getLastname</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setLogin">setLogin</a>($login) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getLogin">getLogin</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setPassword">setPassword</a>($password) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getPassword">getPassword</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setProfile">setProfile</a>($profile) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getProfile">getProfile</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setLocale">setLocale</a>($locale) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getLocale">getLocale</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> </div> <h2>Details</h2> <div id="method-details"> <div class="method-item"> <h3 id="method___set"> <div class="location">in <a href="../../../../Thelia/Core/Event/ActionEvent.html#method___set"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a> at line 27</div> <code> <strong>__set</strong>($name, $value)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$name</td> <td></td> </tr> <tr> <td></td> <td>$value</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method___get"> <div class="location">in <a href="../../../../Thelia/Core/Event/ActionEvent.html#method___get"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a> at line 32</div> <code> <strong>__get</strong>($name)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$name</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method___construct"> <div class="location">at line 29</div> <code> <strong>__construct</strong>( <abbr title="Thelia\Core\Event\Administrator\Thelia\Model\Admin">Admin</abbr> $administrator = null)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Core\Event\Administrator\Thelia\Model\Admin">Admin</abbr></td> <td>$administrator</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_hasAdministrator"> <div class="location">at line 34</div> <code> <strong>hasAdministrator</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_getAdministrator"> <div class="location">at line 39</div> <code> <strong>getAdministrator</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setAdministrator"> <div class="location">at line 44</div> <code> <strong>setAdministrator</strong>( <abbr title="Thelia\Core\Event\Administrator\Thelia\Model\Admin">Admin</abbr> $administrator)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Core\Event\Administrator\Thelia\Model\Admin">Admin</abbr></td> <td>$administrator</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setId"> <div class="location">at line 51</div> <code> <strong>setId</strong>($id)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$id</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getId"> <div class="location">at line 58</div> <code> <strong>getId</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setFirstname"> <div class="location">at line 63</div> <code> <strong>setFirstname</strong>($firstname)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$firstname</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getFirstname"> <div class="location">at line 70</div> <code> <strong>getFirstname</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setLastname"> <div class="location">at line 75</div> <code> <strong>setLastname</strong>($lastname)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$lastname</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getLastname"> <div class="location">at line 82</div> <code> <strong>getLastname</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setLogin"> <div class="location">at line 87</div> <code> <strong>setLogin</strong>($login)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$login</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getLogin"> <div class="location">at line 94</div> <code> <strong>getLogin</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setPassword"> <div class="location">at line 99</div> <code> <strong>setPassword</strong>($password)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$password</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getPassword"> <div class="location">at line 106</div> <code> <strong>getPassword</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setProfile"> <div class="location">at line 111</div> <code> <strong>setProfile</strong>($profile)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$profile</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getProfile"> <div class="location">at line 118</div> <code> <strong>getProfile</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setLocale"> <div class="location">at line 123</div> <code> <strong>setLocale</strong>($locale)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$locale</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getLocale"> <div class="location">at line 130</div> <code> <strong>getLocale</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> </div> </div> <div id="footer"> Generated by <a href="http://sami.sensiolabs.org/">Sami, the API Documentation Generator</a>. </div> </div> </div> </body> </html>
sitecrafting/thelia.github.io
api/2.0/Thelia/Core/Event/Administrator/AdministratorEvent.html
HTML
mit
25,216
<div class="container"> <h2>Important Documents</h2> <label class="checkbox"> <input type="checkbox" value="item1"> Marriage License </label> <label class="checkbox"> <input type="checkbox" value="item2"> Birth Certificates </label> <label class="checkbox"> <input type="checkbox" value="item3"> Social Security Cards </label> <label class="checkbox"> <input type="checkbox" value="item4"> Titles to Vehicles </label> <label class="checkbox"> <input type="checkbox" value="item5"> Deed to House </label> <label class="checkbox"> <input type="checkbox" value="item6"> Stock Papers </label> <label class="checkbox"> <input type="checkbox" value="item7"> Important Bank Account Information </label> <label class="checkbox"> <input type="checkbox" value="item8"> Important Document 1 </label> <label class="checkbox"> <input type="checkbox" value="item9"> Important Document 2 </label> <label class="checkbox"> <input type="checkbox" value="item10"> Important Document 3 </label> <label class="checkbox"> <input type="checkbox" value="item11"> Important Document 4 </label> <label class="checkbox"> <input type="checkbox" value="item12"> Important Document 5 </label> <p class=""> <a href="#/valuables"><button class="btn btn-large btn-success" type="button">Next</button></a> <a href="#/pets"><button class="btn btn-large btn-warning" type="button">Previous</button></a> </p> </div>
wolfofwashington/emeriprep_front
app/documents/documents.html
HTML
mit
1,700
{{< layout}} {{$back}} <div class="photo-guide"> <a href="/../prototype_oix_170518/intro/choose-photo-method" class="back-link">Other ways to get a photo</a> <span class="marker">Guide part 6 of 7</span> </div> {{/back}} {{$main-content}} <link rel="stylesheet" href="{{assetPath}}/stylesheets/app-photo.css"> <div class="flash-card column-full"> <h1>Check quality of photo</h1> <p>Your photo must be clear, in focus and unedited by computer software. You won’t be able to use the photo if you have ‘red-eye’.</p> <nav class="guide-nav"> <ul> <li class="button-guide button-guide-previous"> <a href="{{backLink}}">Previous</a> </li> <li class="button-guide button-guide-next"> <a href="{{nextPage}}">Next</a> </li> </ul> </nav> </div> {{/main-content}} {{/ layout}}
maxinedivers/pass-max
views/prototype_oix_170518/photoguide-short/short-quality.html
HTML
mit
1,054
<meta charset="utf-8"> <title>{% if page.title %}{{ page.title }} &#8211; {% endif %}{{ site.title }}</title> <meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> {% if page.tags %}<meta name="keywords" content="{{ page.tags | join: ', ' }}">{% endif %} {% if site.owner.twitter %}<!-- Twitter Cards --> {% if page.image.feature %}<meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="{{ site.url }}/images/{{ page.image.feature }}"> {% else %}<meta name="twitter:card" content="summary"> <meta name="twitter:image" content="{% if page.image.thumb %}{{ site.url }}/images/{{ page.image.thumb }}{% else %}{{ site.url }}/images/{{ site.logo }}{% endif %}">{% endif %} <meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> <meta name="twitter:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> <meta name="twitter:creator" content="@{{ site.owner.twitter }}">{% endif %} <!-- Open Graph --> <meta property="og:locale" content="en_US"> <meta property="og:type" content="article"> <meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> <meta property="og:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> <meta property="og:url" content="{{ site.url }}{{ page.url }}"> <meta property="og:site_name" content="{{ site.title }}"> {% if site.google_verify %}<meta name="google-site-verification" content="{{ site.google_verify }}">{% endif %} {% if site.bing_verify %}<meta name="msvalidate.01" content="{{ site.bing_verify }}">{% endif %} {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %} <link rel="canonical" href="{{ canonical }}"> <link href="{{ site.url }}/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed"> {% if site.owner.google_plus %}<link rel="author" href="https://google.com/{{ site.owner.google_plus }}?rel=author">{% endif %} <!-- http://t.co/dKP3o1e --> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- For all browsers --> <link rel="stylesheet" href="{{ site.url }}/assets/css/main.min.css"> <!-- Webfonts --> <link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic" rel="stylesheet" type="text/css"> <meta http-equiv="cleartype" content="on"> <!-- Load Modernizr --> <script src="{{ site.url }}/assets/js/vendor/modernizr-2.6.2.custom.min.js"></script> <!-- Icons --> <!-- 16x16 --> <link rel="shortcut icon" href="{{ site.url }}/favicon.ico"> <!-- 32x32 --> <link rel="shortcut icon" href="{{ site.url }}/favicon.png"> <!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices --> <link rel="apple-touch-icon-precomposed" href="{{ site.url }}/images/apple-touch-icon-precomposed.png"> <!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini --> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.url }}/images/apple-touch-icon-72x72-precomposed.png"> <!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch --> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.url }}/images/apple-touch-icon-114x114-precomposed.png"> <!-- 144x144 (precomposed) for iPad 3rd and 4th generation --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.url }}/images/apple-touch-icon-144x144-precomposed.png"> {% if page.image.background or site.background %} {% capture background %}{% if page.image.background %}{{ page.image.background }}{% else %}{{ site.background }}{% endif %}{% endcapture %} {% unless background contains 'http://' or background contains 'https://' %}{% capture background %}{{ site.url }}/images/{{ background }}{% endcapture %}{% endunless %} <style type="text/css">body {background-image:url({{ background }});}</style> {% endif %} {% if site.google_analytics %} <!-- Asynchronous Google Analytics snippet --> <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', '{{ site.google_analytics }}', 'auto'); ga('require', 'displayfeatures'); ga('require', 'linkid', 'linkid.js'); ga('send', 'pageview'); </script> {% endif %}
ch4/ch4.github.com
_includes/head.html
HTML
mit
4,860
<script type="text/javascript"> globalConfig = {{ globalConfig | stringify }}; {% if globalConfig.snippets %} {% for key, value in globalConfig.snippets %} {% include "../snippets/" + key + ".js" ignore missing %} {% endfor %} {% endif %} </script>
kravets-levko/os-packager
app/views/partials/snippets.html
HTML
mit
269
{% extends "v18/head.html" %} {% block page_title %} Licences added to your account - GOV.UK {% endblock %} {% block content %} <main id="content" role="main"> <!-- beta banner block --> {% include "../../partials/beta-banner.html" %} <div class="big-space"></div> <!-- main --> <div class="grid-row"> <div class="column-two-thirds"> <h1 class="heading-large"> Licences added to your account </h1> <div class="small-space"> <h2 class="heading-medium"> We found 7 licences </h2> <p> These have been added to your account. </p> <h2 class="heading-medium"> We were not able to link you with these licence numbers: </h2> <ul class="list list-bullet text"> <li> 01/12/14/0062 </li> <li> 01/14/11/0001/r01 </li> <li> 11/28/00/0014 </li> </ul> <p> If you have entered any of the numbers wrong <a href="#" onclick="history.go(-1)">try adding them again</a>. </p> <!-- contact us block --> {% include "../../partials/contact-us.html" %} </div> <!-- continue button --> <a href="../returns/returns-list" class="button medium-space"> View returns </a> </div> </div> </main> {% endblock %}
christinagyles-ea/water
app/v6/views/v24/ex/returns-registration/added-licences.html
HTML
mit
1,407
<!DOCTYPE html> <html> <head> <title>“The Man and the Wood” | Aesop's Fables | Aesop | Lit2Go ETC</title> <link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/screenless.css" type="text/css" media="screen" title="no title" charset="utf-8"> <link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/printless.css" type="text/css" media="print" title="no title" charset="utf-8"> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/js.min.js"></script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-5574891-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); $(document).ready(function() { $('img').unveil(); $('#contactable').contactable({ url: 'http://etc.usf.edu/lit2go/welcome/feedback/', subject: 'Lit2Go Feedback — “The Man and the Wood” | Aesop\'s Fables | Aesop — http://etc.usf.edu/lit2go/35/aesops-fables/647/the-man-and-the-wood/' }); }); </script> </head> <body> <div class="page"> <header> <h1> <a href="http://etc.usf.edu/lit2go/">Lit<span class="blue">2</span>Go</a> </h1> <ul> <li id="search"><form action="http://etc.usf.edu/lit2go/search/"><input type="text" name="q" placeholder="Search" value=""></form></li> </ul> </header> <nav id="shell"> <ul> <li><a href="http://etc.usf.edu/lit2go/authors/" class="">Authors</a></li> <li><a href="http://etc.usf.edu/lit2go/books/" class="selected">Books</a></li> <li><a href="http://etc.usf.edu/lit2go/genres/" class="">Genres</a></li> <li><a href="http://etc.usf.edu/lit2go/collections/" class="">Collections</a></li> <li><a href="http://etc.usf.edu/lit2go/readability/" class="">Readability</a></li> </ul> </nav> <section id="content"> <div id="contactable"><!-- contactable html placeholder --></div> <div id="page_content"> <header> <h2> <a href="http://etc.usf.edu/lit2go/35/aesops-fables/">Aesop's Fables</a> </h2> <h3> by <a href="http://etc.usf.edu/lit2go/authors/8/aesop/">Aesop</a> </h3> <h4> “The Man and the Wood” </h4> </header> <div id="default"> <details open> <summary> Additional Information </summary> <div id="columns"> <ul> <li> <strong>Year Published:</strong> 1867 </li> <li> <strong>Language:</strong> English </li> <li> <strong>Country of Origin:</strong> Greece </li> <li> <strong>Source:</strong> Aesop (1867) <em> Aesop's Fables </em> </li> </ul> </div> <div id="columns"> <ul> <li> <strong>Readability:</strong> <ul> <li> Flesch–Kincaid Level: <a href="http://etc.usf.edu/lit2go/readability/flesch_kincaid_grade_level/7/" title="Flesch–Kincaid Grade Level 7.0">7.0</a> </li> </ul> </li> <li> <strong>Word Count:</strong> 83 </li> </ul> </div> <div id="columns"> <ul> <li> <strong>Genre:</strong> <a href="http://etc.usf.edu/lit2go/genres/12/fable/">Fable</a> </li> <li> <strong>Keywords:</strong> traditional stories </li> <li> <a class="btn" data-toggle="modal" href="#cite_this" >✎ Cite This</a> </li> <li> <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a addthis:ui_delay="500" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=roywinkelman" class="addthis_button_compact">Share</a> <span class="addthis_separator">|</span> <a class="addthis_button_preferred_1"></a> <a class="addthis_button_preferred_2"></a> <a class="addthis_button_preferred_3"></a> <a class="addthis_button_preferred_4"></a> </div> <script type="text/javascript">$($.getScript("http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"))</script> <!-- <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"></script> --> <!-- AddThis Button END --> </li> </ul> </div> <h4>Downloads</h4> <ul id="downloads"> <li> <a href="http://etc.usf.edu/lit2go/audio/mp3/aesops-fables-058-the-man-and-the-wood.647.mp3">Audio</a> </li> <li> <a href="http://etc.usf.edu/lit2go/pdf/passage/647/aesops-fables-058-the-man-and-the-wood.pdf">Passage PDF</a> </li> <li><a href="http://etc.usf.edu/lit2go/pdf/student_activity/647/647-1.pdf">Student Activity</a></li> </ul> <hr> </details> <div class="modal hide" id="cite_this"> <script> $($('#myTab a').click(function (e) {e.preventDefault();$('#myTab a[href="#apa"]').tab('show');})); </script> <nav> <ul id="myTab"> <li class="active"> <a href="#apa" data-toggle="tab">APA</a> </li> <li> <a href="#mla" data-toggle="tab">MLA</a> </li> <li> <a href="#chicago" data-toggle="tab">Chicago</a> </li> </ul> </nav> <div class="tab-content"> <div class="content tab-pane hide active" id="apa"> <p class="citation"> Aesop, . (1867). “The Man and the Wood”. <em>Aesop's Fables</em> (Lit2Go Edition). Retrieved February 15, 2016, from <span class="faux_link">http://etc.usf.edu/lit2go/35/aesops-fables/647/the-man-and-the-wood/</span> </p> </div> <div class="content tab-pane" id="mla"> <p class="citation"> Aesop, . "“The Man and the Wood”." <em>Aesop's Fables</em>. Lit2Go Edition. 1867. Web. <<span class="faux_link">http://etc.usf.edu/lit2go/35/aesops-fables/647/the-man-and-the-wood/</span>>. February 15, 2016. </p> </div> <div class="content tab-pane" id="chicago"> <p class="citation"> Aesop, "“The Man and the Wood”," <em>Aesop's Fables</em>, Lit2Go Edition, (1867), accessed February 15, 2016, <span class="faux_link">http://etc.usf.edu/lit2go/35/aesops-fables/647/the-man-and-the-wood/</span>. </p> </div> </div> </div> <span class="top"> <nav class="passage"> <ul> <li><a href="http://etc.usf.edu/lit2go/35/aesops-fables/645/the-man-and-the-serpent/" title="“The Man and the Serpent”" class="back">Back</a></li> <li><a href="http://etc.usf.edu/lit2go/35/aesops-fables/648/the-man-the-boy-and-the-donkey/" title="“The Man, the Boy, and the Donkey”" class="next">Next</a></li> </ul> </nav> </span> <div id="shrink_wrap"> <div id="i_apologize_for_the_soup"> <audio controls style="width:99%;"> <source src="http://etc.usf.edu/lit2go/audio/mp3/aesops-fables-058-the-man-and-the-wood.647.mp3" type="audio/mpeg" /> <source src="http://etc.usf.edu/lit2go/audio/ogg/aesops-fables-058-the-man-and-the-wood.647.ogg" type="audio/ogg" /> The embedded audio player requires a modern internet browser. You should visit <a href="http://browsehappy.com/">Browse Happy</a> and update your internet browser today! </audio> <p> A Man came into a Wood one day with an axe in his hand, and begged all the Trees to give him a small branch which he wanted for a particular purpose. The Trees were good-natured and gave him one of their branches. What did the Man do but fix it into the axe head, and soon set to work cutting down tree after tree. Then the Trees saw how foolish they had been in giving their enemy the means of destroying themselves.</p> </div> </div> <span class="bottom"> <nav class="passage"> <ul> <li><a href="http://etc.usf.edu/lit2go/35/aesops-fables/645/the-man-and-the-serpent/" title="“The Man and the Serpent”" class="back">Back</a></li> <li><a href="http://etc.usf.edu/lit2go/35/aesops-fables/648/the-man-the-boy-and-the-donkey/" title="“The Man, the Boy, and the Donkey”" class="next">Next</a></li> </ul> </nav> </span> </div> </div> </section> <footer screen> <div id="footer-text"> <p> This collection of children's literature is a part of the <a href="http://etc.usf.edu/">Educational Technology Clearinghouse</a> and is funded by various <a href="http://etc.usf.edu/lit2go/welcome/funding/">grants</a>. </p> <p> Copyright &copy; 2006&mdash;2016 by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>, <a href="http://www.coedu.usf.edu/">College of Education</a>, <a href="http://www.usf.edu/">University of South Florida</a>. </p> </div> <ul id="footer-links"> <li><a href="http://etc.usf.edu/lit2go/welcome/license/">License</a></li> <li><a href="http://etc.usf.edu/lit2go/welcome/credits/">Credits</a></li> <li><a href="http://etc.usf.edu/lit2go/welcome/faq/">FAQ</a></li> <li><a href="http://etc.usf.edu/lit2go/giving/">Giving</a></li> </ul> </footer> <footer print> <div id="footer-text"> <p>This document was downloaded from <a href="http://etc.usf.edu/lit2go/">Lit2Go</a>, a free online collection of stories and poems in Mp3 (audiobook) format published by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>. For more information, including classroom activities, readability data, and original sources, please visit <a href="http://etc.usf.edu/lit2go/35/aesops-fables/647/the-man-and-the-wood/">http://etc.usf.edu/lit2go/35/aesops-fables/647/the-man-and-the-wood/</a>.</p> </div> <div id="book-footer"> <p>Lit2Go: <em>Aesop's Fables</em></p> <p>“The Man and the Wood”</p> </div> </footer> <script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/details.js"></script> </div> </body> </html>
adrianosb/HtmlToText
lit2go.ok/35/aesops-fables/647/the-man-and-the-wood/index.html
HTML
mit
11,220
<!doctype html> <html> <title>npm-init</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <body> <div id="wrapper"> <h1>npm <a href="../api/init.html">init</a></h1> <p>Interactively create a package.json file</p> <h2 id="SYNOPSIS">SYNOPSIS</h2> <pre><code>npm.commands.init(args, callback)</code></pre> <h2 id="DESCRIPTION">DESCRIPTION</h2> <p>This will ask you a bunch of questions, and then write a package.json for you.</p> <p>It attempts to make reasonable guesses about what you want things to be set to, and then writes a package.json file with the options you&#39;ve selected.</p> <p>If you already have a package.json file, it&#39;ll read that first, and default to the options in there.</p> <p>It is strictly additive, so it does not delete options from your package.json without a really good reason to do so.</p> <p>Since this function expects to be run on the command-line, it doesn&#39;t work very well as a programmatically. The best option is to roll your own, and since JavaScript makes it stupid simple to output formatted JSON, that is the preferred method. If you&#39;re sure you want to handle command-line prompting, then go ahead and use this programmatically.</p> <h2 id="SEE-ALSO">SEE ALSO</h2> <p><a href="../files/package.json.html">package.json(5)</a></p> </div> <p id="footer">npm-init &mdash; [email protected]</p> <script> ;(function () { var wrapper = document.getElementById("wrapper") var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0) .filter(function (el) { return el.parentNode === wrapper && el.tagName.match(/H[1-6]/) && el.id }) var l = 2 , toc = document.createElement("ul") toc.innerHTML = els.map(function (el) { var i = el.tagName.charAt(1) , out = "" while (i > l) { out += "<ul>" l ++ } while (i < l) { out += "</ul>" l -- } out += "<li><a href='#" + el.id + "'>" + ( el.innerText || el.text || el.innerHTML) + "</a>" return out }).join("\n") toc.id = "toc" document.body.appendChild(toc) })() </script>
JasonYang521/JasonYang521.github.io
node_modules/npm/html/doc/api/npm-init.html
HTML
mit
2,140
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Supported Nested Tags - - Phing User Guide</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1" /> <link rel="home" href="index.html" title="Phing User Guide" /> <link rel="up" href="PhpEvalTask.html" title="PhpEvalTask" /> <link rel="prev" href="apbs26s01.html" title="Examples" /> <link rel="next" href="PropertyTask.html" title="PropertyTask" /> <meta name="Section-title" content="Supported Nested Tags" /><script type="text/javascript"> //The id for tree cookie var treeCookieId = "treeview-45301"; var language = "en"; var w = new Object(); //Localization txt_filesfound = 'Results'; txt_enter_at_least_1_char = "You must enter at least one character."; txt_browser_not_supported = "JavaScript is disabled on your browser. Please enable JavaScript to enjoy all the features of this site."; txt_please_wait = "Please wait. Search in progress..."; txt_results_for = "Results for: "; </script><link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> <link rel="stylesheet" type="text/css" href="common/css/positioning.css" /> <link rel="stylesheet" type="text/css" href="common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css" /> <link rel="stylesheet" type="text/css" href="common/jquery/treeview/jquery.treeview.css" /><style type="text/css"> #noscript{ font-weight:bold; background-color: #55AA55; font-weight: bold; height: 25spx; z-index: 3000; top:0px; width:100%; position: relative; border-bottom: solid 5px black; text-align:center; color: white; } input { margin-bottom: 5px; margin-top: 2px; } .folder { display: block; height: 22px; padding-left: 20px; background: transparent url(common/jquery/treeview/images/folder.gif) 0 0px no-repeat; } span.contentsTab { padding-left: 20px; background: url(common/images/toc-icon.png) no-repeat 0 center; } span.searchTab { padding-left: 20px; background: url(common/images/search-icon.png) no-repeat 0 center; } /* Overide jquery treeview's defaults for ul. */ .treeview ul { background-color: transparent; margin-top: 4px; } #webhelp-currentid { background-color: #D8D8D8 !important; } .treeview .hover { color: black; } .filetree li span a { text-decoration: none; font-size: 12px; color: #517291; } /* Override jquery-ui's default css customizations. These are supposed to take precedence over those.*/ .ui-widget-content { border: 0px; background: none; color: none; } .ui-widget-header { color: #e9e8e9; border-left: 1px solid #e5e5e5; border-right: 1px solid #e5e5e5; border-bottom: 1px solid #bbc4c5; border-top: 4px solid #e5e5e5; border: medium none; background: #F4F4F4; /* old browsers */ background: -moz-linear-gradient(top, #F4F4F4 0%, #E6E4E5 100%); /* firefox */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F4F4F4), color-stop(100%,#E6E4E5)); /* webkit */ font-weight: none; } .ui-widget-header a { color: none; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: none; background: none; font-weight: none; color: none; } .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: black; text-decoration: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: none; background: none; font-weight: none; color: none; } .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: none; background: none; font-weight: none; color: none; } .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: black; text-decoration: none; background: #C6C6C6; /* old browsers */ background: -moz-linear-gradient(top, #C6C6C6 0%, #D8D8D8 100%); /* firefox */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#C6C6C6), color-stop(100%,#D8D8D8)); /* webkit */ -webkit-border-radius:15px; -moz-border-radius:10px; border: 1px solid #f1f1f1; } .ui-corner-all { border-radius: 0 0 0 0; } .ui-tabs { padding: .2em;} .ui-tabs .ui-tabs-nav li { top: 0px; margin: -2px 0 1px; text-transform: uppercase; font-size: 10.5px;} .ui-tabs .ui-tabs-nav li a { padding: .25em 2em .25em 1em; margin: .5em; text-shadow: 0 1px 0 rgba(255,255,255,.5); } /** * Basic Layout Theme * * This theme uses the default layout class-names for all classes * Add any 'custom class-names', from options: paneClass, resizerClass, togglerClass */ .ui-layout-pane { /* all 'panes' */ background: #FFF; border: 1px solid #BBB; padding: 05x; overflow: auto; } .ui-layout-resizer { /* all 'resizer-bars' */ background: #DDD; top:100px } .ui-layout-toggler { /* all 'toggler-buttons' */ background: #AAA; } </style> <!--[if IE]> <link rel="stylesheet" type="text/css" href="../common/css/ie.css"/> <![endif]--><script type="text/javascript" src="common/browserDetect.js"> <!----></script><script type="text/javascript" src="common/jquery/jquery-1.7.2.min.js"> <!----></script><script type="text/javascript" src="common/jquery/jquery.ui.all.js"> <!----></script><script type="text/javascript" src="common/jquery/jquery.cookie.js"> <!----></script><script type="text/javascript" src="common/jquery/treeview/jquery.treeview.min.js"> <!----></script><script type="text/javascript" src="common/jquery/layout/jquery.layout.js"> <!----></script><script type="text/javascript" src="search/l10n.js"> <!----></script><script type="text/javascript" src="search/htmlFileInfoList.js"> <!----></script><script type="text/javascript" src="search/nwSearchFnt.js"> <!----></script><script type="text/javascript" src="search/stemmers/en_stemmer.js"> <!--//make this scalable to other languages as well.--></script><script type="text/javascript" src="search/index-1.js"> <!----></script><script type="text/javascript" src="search/index-2.js"> <!----></script><script type="text/javascript" src="search/index-3.js"> <!----></script></head> <body> <noscript> <div id="noscript">JavaScript is disabled on your browser. Please enable JavaScript to enjoy all the features of this site.</div> </noscript> <div id="header"><a href="index.html"><img style="margin-right: 2px; height: 59px; padding-right: 25px; padding-top: 8px" align="right" src="common/images/logo.png" alt="DocBook Documentation" /></a><h1>Phing User Guide<br />PhpEvalTask </h1> <div id="navheader"> <!----> <table class="navLinks"> <tr> <td><a id="showHideButton" href="#" onclick="myLayout.toggle('west')" class="pointLeft" tabindex="5" title="Hide TOC tree">Sidebar </a></td> <td><a accesskey="p" class="navLinkPrevious" tabindex="5" href="apbs26s01.html">Prev</a> | <a accesskey="u" class="navLinkUp" tabindex="5" href="PhpEvalTask.html">Up</a> | <a accesskey="n" class="navLinkNext" tabindex="5" href="PropertyTask.html">Next</a></td> </tr> </table> </div> </div> <div id="content"> <!----> <div class="sect2"> <div xmlns="" class="titlepage"> <div> <div> <h3 xmlns="http://www.w3.org/1999/xhtml" class="title"><a id="d5e4112"></a>Supported Nested Tags </h3> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p><code class="literal">param</code></p> </li> </ul> </div> </div><script type="text/javascript" src="common/main.js"> <!----></script><script type="text/javascript" src="common/splitterInit.js"> <!----></script><div class="navfooter"> <hr /> <table width="100%" summary="Navigation footer"> <tr> <td width="40%" align="left"><a accesskey="p" href="apbs26s01.html">Prev</a>  </td> <td width="20%" align="center"><a accesskey="u" href="PhpEvalTask.html">Up</a></td> <td width="40%" align="right"> <a accesskey="n" href="PropertyTask.html">Next</a></td> </tr> <tr> <td width="40%" align="left" valign="top"> </td> <td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td> <td width="40%" align="right" valign="top"> </td> </tr> </table> </div> </div> <div id="sidebar"> <div id="leftnavigation" style="padding-top:3px;"> <div id="tabs"> <ul> <li><a href="#treeDiv" style="outline:0;" tabindex="1"><span class="contentsTab">Contents</span></a></li> <li><a href="#searchDiv" style="outline:0;" tabindex="1" onclick="doSearch()"><span class="searchTab">Search</span></a></li> </ul> <div id="treeDiv"><img src="common/images/loading.gif" alt="loading table of contents..." id="tocLoading" style="display:block;" /><div id="ulTreeDiv" style="display:none"> <ul id="tree" class="filetree"> <li><span class="file"><a href="pr01.html" tabindex="1">Preface</a></span></li> <li><span class="file"><a href="ch.about.html" tabindex="1">About this book</a></span><ul> <li><span class="file"><a href="ch01s01.html" tabindex="1">Authors</a></span></li> <li><span class="file"><a href="ch01s02.html" tabindex="1">Copyright</a></span></li> <li><span class="file"><a href="ch01s03.html" tabindex="1">License</a></span></li> <li><span class="file"><a href="ch01s04.html" tabindex="1">DocBook</a></span><ul> <li><span class="file"><a href="ch01s04s01.html" tabindex="1">Building the documentation</a></span></li> <li><span class="file"><a href="ch01s04s02.html" tabindex="1">Template for new tasks</a></span></li> <li><span class="file"><a href="ch01s04s03.html" tabindex="1">Customization of the look &amp; feel of the rendered outputs</a></span></li> <li><span class="file"><a href="sec.docbookelements.html" tabindex="1">DocBook v5 elements used in the manual and their meaning</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch.introduction.html" tabindex="1">Introduction</a></span><ul> <li><span class="file"><a href="ch02s01.html" tabindex="1">What Phing Is</a></span></li> <li><span class="file"><a href="ch02s02.html" tabindex="1">Phing &amp; Binarycloud: History</a></span></li> <li><span class="file"><a href="ch02s03.html" tabindex="1">How Phing Works</a></span></li> <li><span class="file"><a href="ch02s04.html" tabindex="1">Cool, so how can I help?</a></span><ul> <li><span class="file"><a href="ch02s04s01.html" tabindex="1"> Participating in the development </a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch.settingup.html" tabindex="1">Setting-up Phing</a></span><ul> <li><span class="file"><a href="ch03s01.html" tabindex="1"> System Requirements </a></span><ul> <li><span class="file"><a href="ch03s01s01.html" tabindex="1"> Operating Systems </a></span></li> <li><span class="file"><a href="ch03s01s02.html" tabindex="1"> Software Dependencies </a></span></li> </ul> </li> <li><span class="file"><a href="ch03s02.html" tabindex="1"> Obtaining Phing </a></span><ul> <li><span class="file"><a href="ch03s02s01.html" tabindex="1"> Distribution Files </a></span></li> <li><span class="file"><a href="ch03s02s02.html" tabindex="1">Getting the latest source from Phing Git repository</a></span></li> </ul> </li> <li><span class="file"><a href="ch03s03.html" tabindex="1"> PEAR Install </a></span></li> <li><span class="file"><a href="ch03s04.html" tabindex="1"> Non-PEAR Install </a></span><ul> <li><span class="file"><a href="ch03s04s01.html" tabindex="1"> Unix </a></span></li> <li><span class="file"><a href="ch03s04s02.html" tabindex="1"> Windows </a></span></li> <li><span class="file"><a href="ch03s04s03.html" tabindex="1">Advanced</a></span></li> </ul> </li> <li><span class="file"><a href="ch03s05.html" tabindex="1"> Calling Phing </a></span><ul> <li><span class="file"><a href="ch03s05s01.html" tabindex="1"> Command Line </a></span></li> <li><span class="file"><a href="ch03s05s02.html" tabindex="1">Supported command line arguments</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch.gettingstarted.html" tabindex="1">Getting started</a></span><ul> <li><span class="file"><a href="ch04s01.html" tabindex="1"> XML And Phing </a></span></li> <li><span class="file"><a href="ch04s02.html" tabindex="1"> Writing A Simple Buildfile </a></span><ul> <li><span class="file"><a href="ch04s02s01.html" tabindex="1"> Project Element </a></span></li> <li><span class="file"><a href="ch04s02s02.html" tabindex="1"> Target Element </a></span><ul> <li><span class="file"><a href="ch04s02s02s01.html" tabindex="1">Target attributes</a></span></li> </ul> </li> <li><span class="file"><a href="ch04s02s03.html" tabindex="1"> Task Elements </a></span></li> <li><span class="file"><a href="ch04s02s04.html" tabindex="1"> Property Element </a></span><ul> <li><span class="file"><a href="ch04s02s04s01.html" tabindex="1">Built-in Properties</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch04s03.html" tabindex="1"> More Complex Buildfile </a></span><ul> <li><span class="file"><a href="ch04s03s01.html" tabindex="1">Handling source dependencies</a></span></li> </ul> </li> <li><span class="file"><a href="ch04s04.html" tabindex="1"> Relax NG Grammar </a></span></li> </ul> </li> <li><span class="file"><a href="ch.projcomponents.html" tabindex="1">Project components</a></span><ul> <li><span class="file"><a href="ch05s01.html" tabindex="1"> Projects </a></span></li> <li><span class="file"><a href="ch05s02.html" tabindex="1"> Version </a></span></li> <li><span class="file"><a href="ch05s03.html" tabindex="1"> Project Components in General </a></span></li> <li><span class="file"><a href="ch05s04.html" tabindex="1"> Targets </a></span></li> <li><span class="file"><a href="ch05s05.html" tabindex="1"> Tasks </a></span></li> <li><span class="file"><a href="sec.types.html" tabindex="1"> Types </a></span><ul> <li><span class="file"><a href="ch05s06s01.html" tabindex="1"> Basics </a></span></li> <li><span class="file"><a href="ch05s06s02.html" tabindex="1"> Referencing Types </a></span></li> </ul> </li> <li><span class="file"><a href="ch05s07.html" tabindex="1"> Basic Types </a></span><ul> <li><span class="file"><a href="ch05s07s01.html" tabindex="1"> FileSet </a></span></li> <li><span class="file"><a href="ch05s07s02.html" tabindex="1"> FileList </a></span></li> <li><span class="file"><a href="ch05s07s03.html" tabindex="1"> FilterChains and Filters </a></span></li> <li><span class="file"><a href="ch05s07s04.html" tabindex="1"> File Mappers </a></span></li> </ul> </li> <li><span class="file"><a href="ch05s08.html" tabindex="1"> Conditions </a></span><ul> <li><span class="file"><a href="ch05s08s01.html" tabindex="1">not</a></span></li> <li><span class="file"><a href="ch05s08s02.html" tabindex="1">and</a></span></li> <li><span class="file"><a href="ch05s08s03.html" tabindex="1">or</a></span></li> <li><span class="file"><a href="ch05s08s04.html" tabindex="1">os</a></span></li> <li><span class="file"><a href="ch05s08s05.html" tabindex="1">equals</a></span></li> <li><span class="file"><a href="ch05s08s06.html" tabindex="1">isset</a></span></li> <li><span class="file"><a href="ch05s08s07.html" tabindex="1">contains</a></span></li> <li><span class="file"><a href="ch05s08s08.html" tabindex="1">istrue</a></span></li> <li><span class="file"><a href="ch05s08s09.html" tabindex="1">isfalse</a></span></li> <li><span class="file"><a href="ch05s08s10.html" tabindex="1">referenceexists</a></span></li> <li><span class="file"><a href="ch05s08s11.html" tabindex="1">available</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch.extending.html" tabindex="1">Extending Phing</a></span><ul> <li><span class="file"><a href="ch06s01.html" tabindex="1"> Extension Possibilities </a></span><ul> <li><span class="file"><a href="sect.ext.tasks.html" tabindex="1"> Tasks </a></span></li> <li><span class="file"><a href="sect.ext.types.html" tabindex="1"> Types </a></span></li> <li><span class="file"><a href="sect.ext.mappers.html" tabindex="1"> Mappers </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s02.html" tabindex="1"> Source Layout </a></span><ul> <li><span class="file"><a href="ch06s02s01.html" tabindex="1"> Files And Directories </a></span></li> <li><span class="file"><a href="ch06s02s02.html" tabindex="1"> File Naming Conventions </a></span></li> <li><span class="file"><a href="ch06s02s03.html" tabindex="1"> Coding Standards </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s03.html" tabindex="1"> System Initialization </a></span><ul> <li><span class="file"><a href="ch06s03s01.html" tabindex="1"> Wrapper Scripts </a></span></li> <li><span class="file"><a href="ch06s03s02.html" tabindex="1"> The Main Application (phing.php) </a></span></li> <li><span class="file"><a href="ch06s03s03.html" tabindex="1"> The Phing Class </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s04.html" tabindex="1"> System Services </a></span><ul> <li><span class="file"><a href="ch06s04s01.html" tabindex="1"> The Exception system </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s05.html" tabindex="1"> Build Lifecycle </a></span><ul> <li><span class="file"><a href="ch06s05s01.html" tabindex="1"> How Phing Parses Buildfiles </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s06.html" tabindex="1"> Writing Tasks </a></span><ul> <li><span class="file"><a href="ch06s06s01.html" tabindex="1"> Creating A Task </a></span></li> <li><span class="file"><a href="ch06s06s02.html" tabindex="1"> Using the Task </a></span></li> <li><span class="file"><a href="ch06s06s03.html" tabindex="1">Source Discussion </a></span></li> <li><span class="file"><a href="ch06s06s04.html" tabindex="1">Task Structure </a></span></li> <li><span class="file"><a href="ch06s06s05.html" tabindex="1">Includes </a></span></li> <li><span class="file"><a href="ch06s06s06.html" tabindex="1"> Class Declaration </a></span></li> <li><span class="file"><a href="ch06s06s07.html" tabindex="1"> Class Properties </a></span></li> <li><span class="file"><a href="ch06s06s08.html" tabindex="1"> The Constructor </a></span></li> <li><span class="file"><a href="ch06s06s09.html" tabindex="1"> Setter Methods </a></span></li> <li><span class="file"><a href="ch06s06s10.html" tabindex="1"> Creator Methods </a></span></li> <li><span class="file"><a href="ch06s06s11.html" tabindex="1"> init() Method </a></span></li> <li><span class="file"><a href="ch06s06s12.html" tabindex="1"> main() Method </a></span></li> <li><span class="file"><a href="ch06s06s13.html" tabindex="1"> Arbitrary Methods </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s07.html" tabindex="1"> Writing Types </a></span><ul> <li><span class="file"><a href="ch06s07s01.html" tabindex="1">Creating a DataType</a></span></li> <li><span class="file"><a href="ch06s07s02.html" tabindex="1"> Using the DataType </a></span></li> <li><span class="file"><a href="ch06s07s03.html" tabindex="1"> Source Discussion </a></span><ul> <li><span class="file"><a href="ch06s07s03s01.html" tabindex="1">Getters &amp; Setters</a></span></li> <li><span class="file"><a href="ch06s07s03s02.html" tabindex="1">The getRef() Method</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch06s08.html" tabindex="1"> Writing Mappers </a></span><ul> <li><span class="file"><a href="ch06s08s01.html" tabindex="1"> Creating a Mapper </a></span></li> <li><span class="file"><a href="ch06s08s02.html" tabindex="1"> Using the Mapper </a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.factsheet.html" tabindex="1">Fact Sheet</a></span><ul> <li><span class="file"><a href="sec.builtinprops.html" tabindex="1">Built-In Properties</a></span></li> <li><span class="file"><a href="sec.commandlineargs.html" tabindex="1"> Command Line Arguments </a></span></li> <li><span class="file"><a href="apas03.html" tabindex="1"> Distribution File Layout </a></span></li> <li><span class="file"><a href="sec.exitcodes.html" tabindex="1">Program Exit Codes</a></span></li> <li><span class="file"><a href="sec.lgpl.html" tabindex="1">The LGPL License</a></span></li> <li><span class="file"><a href="sec.gfdl.html" tabindex="1">The GFDL License</a></span></li> </ul> </li> <li><span class="file"><a href="app.coretasks.html" tabindex="1">Core tasks</a></span><ul> <li><span class="file"><a href="AdhocTaskdefTask.html" tabindex="1">AdhocTaskdefTask </a></span><ul> <li><span class="file"><a href="apbs01s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="AdhocTypedefTask.html" tabindex="1">AdhocTypedefTask </a></span><ul> <li><span class="file"><a href="apbs02s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="AppendTask.html" tabindex="1">AppendTask </a></span><ul> <li><span class="file"><a href="apbs03s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs03s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ApplyTask.html" tabindex="1">ApplyTask </a></span><ul> <li><span class="file"><a href="apbs04s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs04s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="AvailableTask.html" tabindex="1">AvailableTask </a></span><ul> <li><span class="file"><a href="apbs05s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ChmodTask.html" tabindex="1">ChmodTask </a></span><ul> <li><span class="file"><a href="apbs06s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs06s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ChownTask.html" tabindex="1">ChownTask </a></span><ul> <li><span class="file"><a href="apbs07s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs07s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ConditionTask.html" tabindex="1">ConditionTask </a></span><ul> <li><span class="file"><a href="apbs08s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs08s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CopyTask.html" tabindex="1">CopyTask </a></span><ul> <li><span class="file"><a href="apbs09s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs09s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CvsTask.html" tabindex="1">CvsTask </a></span><ul> <li><span class="file"><a href="apbs10s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="CvsPassTask.html" tabindex="1">CvsPassTask </a></span><ul> <li><span class="file"><a href="apbs11s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="DeleteTask.html" tabindex="1"> DeleteTask </a></span><ul> <li><span class="file"><a href="apbs12s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs12s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="EchoTask.html" tabindex="1">EchoTask </a></span><ul> <li><span class="file"><a href="apbs13s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs13s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ExecTask.html" tabindex="1">ExecTask </a></span><ul> <li><span class="file"><a href="apbs14s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs14s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="FailTask.html" tabindex="1">FailTask </a></span><ul> <li><span class="file"><a href="apbs15s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ForeachTask.html" tabindex="1">ForeachTask </a></span><ul> <li><span class="file"><a href="apbs16s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs16s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="IfTask.html" tabindex="1">IfTask </a></span><ul> <li><span class="file"><a href="apbs17s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ImportTask.html" tabindex="1">ImportTask </a></span><ul> <li><span class="file"><a href="apbs18s01.html" tabindex="1">Target Overriding</a></span></li> <li><span class="file"><a href="apbs18s02.html" tabindex="1">Special Properties</a></span></li> <li><span class="file"><a href="apbs18s03.html" tabindex="1">Resolving Files Against the Imported File</a></span></li> <li><span class="file"><a href="apbs18s04.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="IncludePathTask.html" tabindex="1">IncludePathTask </a></span><ul> <li><span class="file"><a href="apbs19s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="InputTask.html" tabindex="1">InputTask </a></span><ul> <li><span class="file"><a href="apbs20s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="LoadFileTask.html" tabindex="1">LoadFileTask </a></span><ul> <li><span class="file"><a href="apbs21s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs21s02.html" tabindex="1">Supported Nested Tags:</a></span></li> </ul> </li> <li><span class="file"><a href="MkdirTask.html" tabindex="1">MkdirTask </a></span><ul> <li><span class="file"><a href="apbs22s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="MoveTask.html" tabindex="1">MoveTask </a></span><ul> <li><span class="file"><a href="apbs23s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs23s02.html" tabindex="1">Attributes and Nested Elements</a></span></li> </ul> </li> <li><span class="file"><a href="PhingTask.html" tabindex="1">PhingTask </a></span><ul> <li><span class="file"><a href="apbs24s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs24s02.html" tabindex="1">Supported Nested Tags</a></span></li> <li><span class="file"><a href="apbs24s03.html" tabindex="1">Base directory of the new project</a></span></li> </ul> </li> <li><span class="file"><a href="PhingCallTask.html" tabindex="1">PhingCallTask </a></span><ul> <li><span class="file"><a href="apbs25s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs25s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpEvalTask.html" tabindex="1">PhpEvalTask </a></span><ul> <li><span class="file"><a href="apbs26s01.html" tabindex="1">Examples</a></span></li> <li id="webhelp-currentid"><span class="file"><a href="apbs26s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PropertyTask.html" tabindex="1">PropertyTask </a></span><ul> <li><span class="file"><a href="apbs27s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs27s02.html" tabindex="1">Supported Nested Tags:</a></span></li> </ul> </li> <li><span class="file"><a href="PropertyPromptTask.html" tabindex="1">PropertyPromptTask </a></span><ul> <li><span class="file"><a href="apbs28s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ReflexiveTask.html" tabindex="1">ReflexiveTask </a></span><ul> <li><span class="file"><a href="apbs29s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs29s02.html" tabindex="1">Supported Nested Tags:</a></span></li> </ul> </li> <li><span class="file"><a href="ResolvePathTask.html" tabindex="1">ResolvePathTask </a></span><ul> <li><span class="file"><a href="apbs30s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="TaskdefTask.html" tabindex="1">TaskdefTask </a></span><ul> <li><span class="file"><a href="apbs31s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs31s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="TouchTask.html" tabindex="1">TouchTask </a></span><ul> <li><span class="file"><a href="apbs32s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs32s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="TryCatchTask.html" tabindex="1">TryCatchTask</a></span><ul> <li><span class="file"><a href="apbs33s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="TstampTask.html" tabindex="1">TstampTask </a></span><ul> <li><span class="file"><a href="apbs34s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs34s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="TypedefTask.html" tabindex="1">TypedefTask </a></span><ul> <li><span class="file"><a href="apbs35s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs35s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="UpToDateTask.html" tabindex="1">UpToDateTask </a></span><ul> <li><span class="file"><a href="apbs36s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs36s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="WaitForTask.html" tabindex="1">WaitForTask</a></span><ul> <li><span class="file"><a href="apbs37s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs37s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="XsltTask.html" tabindex="1">XsltTask </a></span><ul> <li><span class="file"><a href="apbs38s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs38s02.html" tabindex="1">Supported Nested Elements</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.optionaltasks.html" tabindex="1">Optional tasks</a></span><ul> <li><span class="file"><a href="ApiGenTask.html" tabindex="1">ApiGenTask</a></span><ul> <li><span class="file"><a href="apcs01s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="CoverageMergerTask.html" tabindex="1">CoverageMergerTask</a></span><ul> <li><span class="file"><a href="apcs02s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs02s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CoverageReportTask.html" tabindex="1">CoverageReportTask</a></span><ul> <li><span class="file"><a href="apcs03s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs03s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CoverageSetupTask.html" tabindex="1">CoverageSetupTask</a></span><ul> <li><span class="file"><a href="apcs04s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs04s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CoverageThresholdTask.html" tabindex="1">CoverageThresholdTask</a></span><ul> <li><span class="file"><a href="apcs05s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs05s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="DbDeployTask.html" tabindex="1">DbDeployTask</a></span><ul> <li><span class="file"><a href="apcs06s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="DocBloxTask.html" tabindex="1">DocBloxTask</a></span><ul> <li><span class="file"><a href="apcs07s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs07s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ExportPropertiesTask.html" tabindex="1">ExportPropertiesTask</a></span><ul> <li><span class="file"><a href="apcs08s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="FileHashTask.html" tabindex="1">FileHashTask</a></span><ul> <li><span class="file"><a href="apcs09s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="FileSizeTask.html" tabindex="1">FileSizeTask</a></span><ul> <li><span class="file"><a href="apcs10s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="FileSyncTask.html" tabindex="1">FileSyncTask</a></span><ul> <li><span class="file"><a href="apcs11s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="FtpDeployTask.html" tabindex="1">FtpDeployTask</a></span><ul> <li><span class="file"><a href="apcs12s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs12s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="GitInitTask.html" tabindex="1">GitInitTask</a></span><ul> <li><span class="file"><a href="apcs13s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitCloneTask.html" tabindex="1">GitCloneTask</a></span><ul> <li><span class="file"><a href="apcs14s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitGcTask.html" tabindex="1">GitGcTask</a></span><ul> <li><span class="file"><a href="apcs15s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitBranchTask.html" tabindex="1">GitBranchTask</a></span><ul> <li><span class="file"><a href="apcs16s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitFetchTask.html" tabindex="1">GitFetchTask</a></span><ul> <li><span class="file"><a href="apcs17s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitCheckoutTask.html" tabindex="1">GitCheckoutTask</a></span><ul> <li><span class="file"><a href="apcs18s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitCommitTask.html" tabindex="1">GitCommitTask</a></span><ul> <li><span class="file"><a href="apcs19s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs19s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="GitMergeTask.html" tabindex="1">GitMergeTask</a></span><ul> <li><span class="file"><a href="apcs20s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitPullTask.html" tabindex="1">GitPullTask</a></span><ul> <li><span class="file"><a href="apcs21s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitPushTask.html" tabindex="1">GitPushTask</a></span><ul> <li><span class="file"><a href="apcs22s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitTagTask.html" tabindex="1">GitTagTask</a></span><ul> <li><span class="file"><a href="apcs23s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitLogTask.html" tabindex="1">GitLogTask</a></span><ul> <li><span class="file"><a href="apcs24s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GrowlNotifyTask.html" tabindex="1">GrowlNotifyTask</a></span><ul> <li><span class="file"><a href="apcs25s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="HttpGetTask.html" tabindex="1">HttpGetTask</a></span><ul> <li><span class="file"><a href="apcs26s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs26s02.html" tabindex="1">Supported Nested Tags</a></span></li> <li><span class="file"><a href="apcs26s03.html" tabindex="1">Global configuration</a></span></li> </ul> </li> <li><span class="file"><a href="HttpRequestTask.html" tabindex="1">HttpRequestTask</a></span><ul> <li><span class="file"><a href="apcs27s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs27s02.html" tabindex="1">Supported Nested Tags</a></span></li> <li><span class="file"><a href="apcs27s03.html" tabindex="1">Global configuration</a></span></li> </ul> </li> <li><span class="file"><a href="IoncubeEncoderTask.html" tabindex="1">IoncubeEncoderTask</a></span><ul> <li><span class="file"><a href="apcs28s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs28s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="IoncubeLicenseTask.html" tabindex="1">IoncubeLicenseTask</a></span><ul> <li><span class="file"><a href="apcs29s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs29s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="JslLintTask.html" tabindex="1">JslLintTask</a></span><ul> <li><span class="file"><a href="apcs30s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs30s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="JsMinTask.html" tabindex="1">JsMinTask</a></span><ul> <li><span class="file"><a href="apcs31s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs31s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseTask.html" tabindex="1">LiquibaseTask</a></span><ul> <li><span class="file"><a href="apcs32s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs32s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseChangeLogTask.html" tabindex="1">LiquibaseChangeLogTask</a></span><ul> <li><span class="file"><a href="apcs33s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs33s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseDbDocTask.html" tabindex="1">LiquibaseDbDocTask</a></span><ul> <li><span class="file"><a href="apcs34s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs34s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseDiffTask.html" tabindex="1">LiquibaseDiffTask</a></span><ul> <li><span class="file"><a href="apcs35s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs35s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseRollbackTask.html" tabindex="1">LiquibaseRollbackTask</a></span><ul> <li><span class="file"><a href="apcs36s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs36s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseTagTask.html" tabindex="1">LiquibaseTagTask</a></span><ul> <li><span class="file"><a href="apcs37s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs37s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseUpdateTask.html" tabindex="1">LiquibaseUpdateTask</a></span><ul> <li><span class="file"><a href="apcs38s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs38s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="MailTask.html" tabindex="1">MailTask</a></span><ul> <li><span class="file"><a href="apcs39s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs39s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ParallelTask.html" tabindex="1">ParallelTask</a></span><ul> <li><span class="file"><a href="apcs40s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="PatchTask.html" tabindex="1">PatchTask</a></span><ul> <li><span class="file"><a href="apcs41s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="PDOSQLExecTask.html" tabindex="1">PDOSQLExecTask</a></span><ul> <li><span class="file"><a href="apcs42s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs42s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PearPackageTask.html" tabindex="1">PearPackageTask</a></span><ul> <li><span class="file"><a href="apcs43s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs43s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PearPackage2Task.html" tabindex="1">PearPackage2Task</a></span><ul> <li><span class="file"><a href="apcs44s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs44s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PharPackageTask.html" tabindex="1">PharPackageTask</a></span><ul> <li><span class="file"><a href="apcs45s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs45s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhkPackageTask.html" tabindex="1">PhkPackageTask</a></span><ul> <li><span class="file"><a href="apcs46s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs46s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpCodeSnifferTask.html" tabindex="1">PhpCodeSnifferTask</a></span><ul> <li><span class="file"><a href="apcs47s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs47s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPCPDTask.html" tabindex="1">PHPCPDTask</a></span><ul> <li><span class="file"><a href="apcs48s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs48s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPLocTask.html" tabindex="1">PHPLocTask</a></span><ul> <li><span class="file"><a href="apcs49s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs49s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPMDTask.html" tabindex="1">PHPMDTask</a></span><ul> <li><span class="file"><a href="apcs50s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs50s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpDependTask.html" tabindex="1">PhpDependTask</a></span><ul> <li><span class="file"><a href="apcs51s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs51s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpDocumentorTask.html" tabindex="1">PhpDocumentorTask</a></span><ul> <li><span class="file"><a href="apcs52s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs52s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpDocumentor2Task.html" tabindex="1">PhpDocumentor2Task</a></span><ul> <li><span class="file"><a href="apcs53s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs53s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpDocumentorExternalTask.html" tabindex="1">PhpDocumentorExternalTask</a></span><ul> <li><span class="file"><a href="apcs54s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="PhpLintTask.html" tabindex="1">PhpLintTask</a></span><ul> <li><span class="file"><a href="apcs55s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs55s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPUnitTask.html" tabindex="1">PHPUnitTask</a></span><ul> <li><span class="file"><a href="apcs56s01.html" tabindex="1">Supported Nested Tags</a></span></li> <li><span class="file"><a href="apcs56s02.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs56s03.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPUnitReport.html" tabindex="1">PHPUnitReport</a></span><ul> <li><span class="file"><a href="apcs57s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="rSTTask.html" tabindex="1">rSTTask</a></span><ul> <li><span class="file"><a href="apcs58s01.html" tabindex="1">Features</a></span></li> <li><span class="file"><a href="apcs58s02.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs58s03.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="S3PutTask.html" tabindex="1">S3PutTask</a></span><ul> <li><span class="file"><a href="apcs59s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs59s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="S3GetTask.html" tabindex="1">S3GetTask</a></span><ul> <li><span class="file"><a href="apcs60s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="ScpTask.html" tabindex="1">ScpTask</a></span><ul> <li><span class="file"><a href="apcs61s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs61s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="SshTask.html" tabindex="1">SshTask</a></span><ul> <li><span class="file"><a href="apcs62s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs62s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="SimpleTestTask.html" tabindex="1">SimpleTestTask</a></span><ul> <li><span class="file"><a href="apcs63s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs63s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="SvnCheckoutTask.html" tabindex="1">SvnCheckoutTask</a></span><ul> <li><span class="file"><a href="apcs64s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnCommitTask.html" tabindex="1">SvnCommitTask</a></span><ul> <li><span class="file"><a href="apcs65s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnCopyTask.html" tabindex="1">SvnCopyTask</a></span><ul> <li><span class="file"><a href="apcs66s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnExportTask.html" tabindex="1">SvnExportTask</a></span><ul> <li><span class="file"><a href="apcs67s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnInfoTask.html" tabindex="1">SvnInfoTask</a></span><ul> <li><span class="file"><a href="apcs68s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnLastRevisionTask.html" tabindex="1">SvnLastRevisionTask</a></span><ul> <li><span class="file"><a href="apcs69s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnListTask.html" tabindex="1">SvnListTask</a></span><ul> <li><span class="file"><a href="apcs70s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnLogTask.html" tabindex="1">SvnLogTask</a></span><ul> <li><span class="file"><a href="apcs71s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnUpdateTask.html" tabindex="1">SvnUpdateTask</a></span><ul> <li><span class="file"><a href="apcs72s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnSwitchTask.html" tabindex="1">SvnSwitchTask</a></span><ul> <li><span class="file"><a href="apcs73s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SymfonyConsoleTask.html" tabindex="1">SymfonyConsoleTask</a></span><ul> <li><span class="file"><a href="apcs74s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs74s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="SymlinkTask.html" tabindex="1">SymlinkTask</a></span><ul> <li><span class="file"><a href="apcs75s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs75s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="TarTask.html" tabindex="1">TarTask</a></span><ul> <li><span class="file"><a href="apcs76s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs76s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="UntarTask.html" tabindex="1">UntarTask</a></span><ul> <li><span class="file"><a href="apcs77s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs77s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="UnzipTask.html" tabindex="1">UnzipTask</a></span><ul> <li><span class="file"><a href="apcs78s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs78s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="VersionTask.html" tabindex="1">VersionTask</a></span><ul> <li><span class="file"><a href="apcs79s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="WikiPublishTask.html" tabindex="1">WikiPublishTask</a></span><ul> <li><span class="file"><a href="apcs80s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="XmlLintTask.html" tabindex="1">XmlLintTask</a></span><ul> <li><span class="file"><a href="apcs81s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs81s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="XmlPropertyTask.html" tabindex="1">XmlPropertyTask</a></span><ul> <li><span class="file"><a href="apcs82s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="ZendCodeAnalyzerTask.html" tabindex="1">ZendCodeAnalyzerTask</a></span><ul> <li><span class="file"><a href="apcs83s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs83s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ZendGuardEncodeTask.html" tabindex="1">ZendGuardEncodeTask</a></span><ul> <li><span class="file"><a href="apcs84s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs84s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ZendGuardLicenseTask.html" tabindex="1">ZendGuardLicenseTask</a></span><ul> <li><span class="file"><a href="apcs85s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ZipTask.html" tabindex="1">ZipTask</a></span><ul> <li><span class="file"><a href="apcs86s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs86s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.coretypes.html" tabindex="1">Core Types</a></span><ul> <li><span class="file"><a href="Excludes.html" tabindex="1">Excludes</a></span><ul> <li><span class="file"><a href="apds01s01.html" tabindex="1">Nested tags</a></span></li> <li><span class="file"><a href="apds01s02.html" tabindex="1">Usage Examples</a></span></li> </ul> </li> <li><span class="file"><a href="FileList.html" tabindex="1">FileList</a></span><ul> <li><span class="file"><a href="apds02s01.html" tabindex="1">Usage Examples</a></span></li> </ul> </li> <li><span class="file"><a href="FileSet.html" tabindex="1">FileSet</a></span><ul> <li><span class="file"><a href="apds03s01.html" tabindex="1">Using wildcards</a></span></li> <li><span class="file"><a href="apds03s02.html" tabindex="1">Usage Examples</a></span></li> <li><span class="file"><a href="apds03s03.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="PatternSet.html" tabindex="1">PatternSet </a></span><ul> <li><span class="file"><a href="apds04s01.html" tabindex="1">Usage Example</a></span></li> <li><span class="file"><a href="apds04s02.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="path.html" tabindex="1">Path / Classpath</a></span><ul> <li><span class="file"><a href="apds05s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.corefilters.html" tabindex="1">Core filters</a></span><ul> <li><span class="file"><a href="PhingFilterReader.html" tabindex="1">PhingFilterReader</a></span><ul> <li><span class="file"><a href="apes01s01.html" tabindex="1">Nested tags</a></span></li> <li><span class="file"><a href="apes01s02.html" tabindex="1">Advanced</a></span></li> </ul> </li> <li><span class="file"><a href="ExpandProperties.html" tabindex="1">ExpandProperties</a></span></li> <li><span class="file"><a href="HeadFilter.html" tabindex="1">HeadFilter</a></span></li> <li><span class="file"><a href="IconvFilter.html" tabindex="1">IconvFilter</a></span></li> <li><span class="file"><a href="LineContains.html" tabindex="1">Line Contains </a></span><ul> <li><span class="file"><a href="apes05s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="LineContainsRegexp.html" tabindex="1">LineContainsRegexp</a></span><ul> <li><span class="file"><a href="apes06s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="PrefixLines.html" tabindex="1">PrefixLines</a></span></li> <li><span class="file"><a href="ReplaceTokens.html" tabindex="1">ReplaceTokens</a></span><ul> <li><span class="file"><a href="apes08s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="ReplaceTokensWithFile.html" tabindex="1">ReplaceTokensWithFile</a></span><ul> <li><span class="file"><a href="apes09s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="ReplaceRegexp.html" tabindex="1">ReplaceRegexp</a></span><ul> <li><span class="file"><a href="apes10s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="StripLineBreaks.html" tabindex="1">StripLineBreaks</a></span></li> <li><span class="file"><a href="StripLineComments.html" tabindex="1">StripLineComments</a></span><ul> <li><span class="file"><a href="apes12s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="StripPhpComments.html" tabindex="1">StripPhpComments</a></span></li> <li><span class="file"><a href="StripWhitespace.html" tabindex="1">StripWhitespace</a></span></li> <li><span class="file"><a href="TabToSpaces.html" tabindex="1">TabToSpaces</a></span></li> <li><span class="file"><a href="TailFilter.html" tabindex="1">TailFilter</a></span></li> <li><span class="file"><a href="TidyFilter.html" tabindex="1">TidyFilter</a></span><ul> <li><span class="file"><a href="apes17s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="XincludeFilter.html" tabindex="1">XincludeFilter</a></span></li> <li><span class="file"><a href="XsltFilter.html" tabindex="1">XsltFilter</a></span><ul> <li><span class="file"><a href="apes19s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.coremappers.html" tabindex="1">Core mappers</a></span><ul> <li><span class="file"><a href="apfs01.html" tabindex="1">Common Attributes</a></span></li> <li><span class="file"><a href="FlattenMapper.html" tabindex="1">FlattenMapper </a></span><ul> <li><span class="file"><a href="apfs02s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="GlobMapper.html" tabindex="1">GlobMapper </a></span><ul> <li><span class="file"><a href="apfs03s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="IdentityMapper.html" tabindex="1">IdentityMapper </a></span></li> <li><span class="file"><a href="MergeMapper.html" tabindex="1">MergeMapper </a></span><ul> <li><span class="file"><a href="apfs05s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="RegexpMapper.html" tabindex="1">RegexpMapper </a></span><ul> <li><span class="file"><a href="apfs06s01.html" tabindex="1">Examples</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.selectors.html" tabindex="1">Core selectors</a></span><ul> <li><span class="file"><a href="Contains.html" tabindex="1">Contains </a></span></li> <li><span class="file"><a href="Date.html" tabindex="1">Date</a></span></li> <li><span class="file"><a href="Depend.html" tabindex="1">Depend</a></span></li> <li><span class="file"><a href="Depth.html" tabindex="1">Depth</a></span></li> <li><span class="file"><a href="Filename.html" tabindex="1">Filename </a></span></li> <li><span class="file"><a href="Present.html" tabindex="1">Present</a></span></li> <li><span class="file"><a href="Containsregexp.html" tabindex="1">Containsregexp</a></span></li> <li><span class="file"><a href="Size.html" tabindex="1">Size</a></span></li> <li><span class="file"><a href="Type.html" tabindex="1">Type </a></span></li> <li><span class="file"><a href="And.html" tabindex="1">And </a></span></li> <li><span class="file"><a href="Majority.html" tabindex="1">Majority</a></span></li> <li><span class="file"><a href="None.html" tabindex="1">None </a></span></li> <li><span class="file"><a href="Not.html" tabindex="1">Not</a></span></li> <li><span class="file"><a href="Or.html" tabindex="1">Or</a></span></li> <li><span class="file"><a href="Selector.html" tabindex="1">Selector </a></span></li> </ul> </li> <li><span class="file"><a href="app.projcomponents.html" tabindex="1">Project Components</a></span><ul> <li><span class="file"><a href="Project.html" tabindex="1">Phing Projects</a></span><ul> <li><span class="file"><a href="aphs01s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="aphs01s02.html" tabindex="1">Attributes</a></span></li> </ul> </li> <li><span class="file"><a href="Target.html" tabindex="1">Targets</a></span><ul> <li><span class="file"><a href="aphs02s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="aphs02s02.html" tabindex="1">Attributes</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.fileformats.html" tabindex="1">File Formats</a></span><ul> <li><span class="file"><a href="BuildFileFormat.html" tabindex="1">Build File Format</a></span></li> <li><span class="file"><a href="PropertyFileFormat.html" tabindex="1">Property File Format</a></span></li> </ul> </li> <li><span class="file"><a href="app.bibliography.html" tabindex="1">Bibliography</a></span><ul> <li><span class="file"><a href="app.bibliography.html#InternationalStandards" tabindex="1">International Standards</a></span></li> <li><span class="file"><a href="app.bibliography.html#Licenses" tabindex="1">Licenses</a></span></li> <li><span class="file"><a href="app.bibliography.html#os-projects" tabindex="1">Open Source Projects</a></span></li> <li><span class="file"><a href="app.bibliography.html#Manuals" tabindex="1">Manuals</a></span></li> <li><span class="file"><a href="app.bibliography.html#OtherResources" tabindex="1">Other Resources</a></span></li> </ul> </li> </ul> </div> </div> <div id="searchDiv"> <div id="search"> <form onsubmit="Verifie(searchForm);return false" name="searchForm" class="searchForm"> <div><input id="textToSearch" name="textToSearch" type="search" placeholder="Search" class="searchText" tabindex="1" /> &nbsp; <input onclick="Verifie(searchForm)" type="button" class="searchButton" value="Go" id="doSearch" tabindex="1" /></div> </form> </div> <div id="searchResults"> <center></center> </div> <p class="searchHighlight"><a href="#" onclick="toggleHighlight()">Search Highlighter (On/Off)</a></p> </div> </div> </div> </div> </body> </html>
ghostnc/symfony-project
vendor/phing/phing/docs/docbook5/en/output/webhelp/apbs26s02.html
HTML
mit
92,751
<!doctype html> <html> <title>npm-pack</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-pack.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../cli/npm-pack.html">npm-pack</a></h1> <p>Create a tarball from a package</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm pack [&lt;pkg&gt; [&lt;pkg&gt; ...]] </code></pre><h2 id="description">DESCRIPTION</h2> <p>For anything that&#39;s installable (that is, a package folder, tarball, tarball url, name@tag, name@version, or name), this command will fetch it to the cache, and then copy the tarball to the current working directory as <code>&lt;name&gt;-&lt;version&gt;.tgz</code>, and then write the filenames out to stdout.</p> <p>If the same package is specified multiple times, then the file will be overwritten the second time.</p> <p>If no arguments are supplied, then npm packs the current package folder.</p> <h2 id="see-also">SEE ALSO</h2> <ul> <li><a href="../cli/npm-cache.html"><a href="../cli/npm-cache.html">npm-cache(1)</a></a></li> <li><a href="../cli/npm-publish.html"><a href="../cli/npm-publish.html">npm-publish(1)</a></a></li> <li><a href="../cli/npm-config.html"><a href="../cli/npm-config.html">npm-config(1)</a></a></li> <li><a href="../misc/npm-config.html"><a href="../misc/npm-config.html">npm-config(7)</a></a></li> <li><a href="../files/npmrc.html"><a href="../files/npmrc.html">npmrc(5)</a></a></li> </ul> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm-pack &mdash; [email protected]</p>
hbzhang/rsstack
node_modules/meanio/node_modules/mean-cli/node_modules/npm/html/doc/cli/npm-pack.html
HTML
mit
3,760
</table> {% extends 'layout.html' %} {% block header %} <h4 class="center-align" style="margin-bottom:30px">Ndermarresit</h4> {% endblock %} {% block content%} <div class="card-panel"> <table class="highlight bordered responsive-table"> <thead> <tr> <th>Emri i Ndermarresit</th> <th>Adresa</th> <th>Numri i Telefonit</th> <th>Email Adresa</th> <th>Opsionet</th> </tr> </thead> <tbody> {% for record in myCursor %} <tr class="item-row"> <td> {{ record['vetemshkronja'] }} </td> <td> {{ record['vetemshkronja'] }} </td> <td> {{ record['vetemnumra'] }} </td> <td> {{ record['vetemshkronja'] }} </td> <td> <a href="{{ url_for('main.get_doc', id=item._id) }}">Views</a> <a href="{{url_for('main.remove_doc',id=item._id)}}">Delete</a> </td> </tr> {%endfor%} </tbody> </table> </div> {% endblock %}
ArditaHoti/Techstitution
app/templates/lista.html
HTML
cc0-1.0
928
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_45) on Fri Aug 28 09:51:31 EDT 2015 --> <title>Serialized Form (apache-cassandra API)</title> <meta name="date" content="2015-08-28"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <script type="text/javascript" src="script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Serialized Form (apache-cassandra API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="overview-tree.html">Tree</a></li> <li><a href="deprecated-list.html">Deprecated</a></li> <li><a href="index-all.html">Index</a></li> <li><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?serialized-form.html" target="_top">Frames</a></li> <li><a href="serialized-form.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="Serialized Form" class="title">Serialized Form</h1> </div> <div class="serializedFormContainer"> <ul class="blockList"> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.db</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.db.ColumnSerializer.CorruptColumnException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/db/ColumnSerializer.CorruptColumnException.html" title="class in org.apache.cassandra.db">org.apache.cassandra.db.ColumnSerializer.CorruptColumnException</a> extends java.io.IOException implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.db.KeyspaceNotDefinedException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/db/KeyspaceNotDefinedException.html" title="class in org.apache.cassandra.db">org.apache.cassandra.db.KeyspaceNotDefinedException</a> extends <a href="org/apache/cassandra/exceptions/InvalidRequestException.html" title="class in org.apache.cassandra.exceptions">InvalidRequestException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.db.UnknownColumnFamilyException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/db/UnknownColumnFamilyException.html" title="class in org.apache.cassandra.db">org.apache.cassandra.db.UnknownColumnFamilyException</a> extends java.io.IOException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>cfId</h4> <pre>java.util.UUID cfId</pre> </li> </ul> </li> </ul> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.db.commitlog</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.db.commitlog.CommitLogReplayer.CommitLogReplayException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/db/commitlog/CommitLogReplayer.CommitLogReplayException.html" title="class in org.apache.cassandra.db.commitlog">org.apache.cassandra.db.commitlog.CommitLogReplayer.CommitLogReplayException</a> extends java.io.IOException implements Serializable</h3> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.db.compaction</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.db.compaction.CompactionInfo"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/db/compaction/CompactionInfo.html" title="class in org.apache.cassandra.db.compaction">org.apache.cassandra.db.compaction.CompactionInfo</a> extends java.lang.Object implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>3695381572726744816L</dd> </dl> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>cfm</h4> <pre><a href="org/apache/cassandra/config/CFMetaData.html" title="class in org.apache.cassandra.config">CFMetaData</a> cfm</pre> </li> <li class="blockList"> <h4>tasktype</h4> <pre><a href="org/apache/cassandra/db/compaction/OperationType.html" title="enum in org.apache.cassandra.db.compaction">OperationType</a> tasktype</pre> </li> <li class="blockList"> <h4>completed</h4> <pre>long completed</pre> </li> <li class="blockList"> <h4>total</h4> <pre>long total</pre> </li> <li class="blockList"> <h4>unit</h4> <pre>java.lang.String unit</pre> </li> <li class="blockListLast"> <h4>compactionId</h4> <pre>java.util.UUID compactionId</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.db.compaction.CompactionInterruptedException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/db/compaction/CompactionInterruptedException.html" title="class in org.apache.cassandra.db.compaction">org.apache.cassandra.db.compaction.CompactionInterruptedException</a> extends java.lang.RuntimeException implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>-8651427062512310398L</dd> </dl> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.db.filter</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.db.filter.TombstoneOverwhelmingException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/db/filter/TombstoneOverwhelmingException.html" title="class in org.apache.cassandra.db.filter">org.apache.cassandra.db.filter.TombstoneOverwhelmingException</a> extends java.lang.RuntimeException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>numTombstones</h4> <pre>int numTombstones</pre> </li> <li class="blockList"> <h4>numRequested</h4> <pre>int numRequested</pre> </li> <li class="blockList"> <h4>ksName</h4> <pre>java.lang.String ksName</pre> </li> <li class="blockList"> <h4>cfName</h4> <pre>java.lang.String cfName</pre> </li> <li class="blockList"> <h4>lastCellName</h4> <pre>java.lang.String lastCellName</pre> </li> <li class="blockList"> <h4>slicesInfo</h4> <pre>java.lang.String slicesInfo</pre> </li> <li class="blockListLast"> <h4>partitionKey</h4> <pre>java.lang.String partitionKey</pre> </li> </ul> </li> </ul> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.dht</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.dht.AbstractBounds"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/AbstractBounds.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.AbstractBounds</a> extends java.lang.Object implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>1L</dd> </dl> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>left</h4> <pre><a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/RingPosition.html" title="type parameter in RingPosition">C</a> extends <a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/RingPosition.html" title="type parameter in RingPosition">C</a>&gt;&gt; left</pre> </li> <li class="blockListLast"> <h4>right</h4> <pre><a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/RingPosition.html" title="type parameter in RingPosition">C</a> extends <a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/RingPosition.html" title="type parameter in RingPosition">C</a>&gt;&gt; right</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.dht.Bounds"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/Bounds.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.Bounds</a> extends <a href="org/apache/cassandra/dht/AbstractBounds.html" title="class in org.apache.cassandra.dht">AbstractBounds</a>&lt;<a href="org/apache/cassandra/dht/Bounds.html" title="type parameter in Bounds">T</a> extends <a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/Bounds.html" title="type parameter in Bounds">T</a>&gt;&gt; implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.dht.ByteOrderedPartitioner.BytesToken"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/ByteOrderedPartitioner.BytesToken.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.ByteOrderedPartitioner.BytesToken</a> extends <a href="org/apache/cassandra/dht/Token.html" title="class in org.apache.cassandra.dht">Token</a> implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>-2630749093733680626L</dd> </dl> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>token</h4> <pre>byte[] token</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.dht.ExcludingBounds"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/ExcludingBounds.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.ExcludingBounds</a> extends <a href="org/apache/cassandra/dht/AbstractBounds.html" title="class in org.apache.cassandra.dht">AbstractBounds</a>&lt;<a href="org/apache/cassandra/dht/ExcludingBounds.html" title="type parameter in ExcludingBounds">T</a> extends <a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/ExcludingBounds.html" title="type parameter in ExcludingBounds">T</a>&gt;&gt; implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.dht.IncludingExcludingBounds"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/IncludingExcludingBounds.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.IncludingExcludingBounds</a> extends <a href="org/apache/cassandra/dht/AbstractBounds.html" title="class in org.apache.cassandra.dht">AbstractBounds</a>&lt;<a href="org/apache/cassandra/dht/IncludingExcludingBounds.html" title="type parameter in IncludingExcludingBounds">T</a> extends <a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/IncludingExcludingBounds.html" title="type parameter in IncludingExcludingBounds">T</a>&gt;&gt; implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.dht.LocalPartitioner.LocalToken"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/LocalPartitioner.LocalToken.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.LocalPartitioner.LocalToken</a> extends org.apache.cassandra.dht.ComparableObjectToken&lt;java.nio.ByteBuffer&gt; implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>8437543776403014875L</dd> </dl> </li> <li class="blockList"><a name="org.apache.cassandra.dht.Murmur3Partitioner.LongToken"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/Murmur3Partitioner.LongToken.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.Murmur3Partitioner.LongToken</a> extends <a href="org/apache/cassandra/dht/Token.html" title="class in org.apache.cassandra.dht">Token</a> implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>-5833580143318243006L</dd> </dl> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>token</h4> <pre>long token</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.dht.OrderPreservingPartitioner.StringToken"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/OrderPreservingPartitioner.StringToken.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.OrderPreservingPartitioner.StringToken</a> extends org.apache.cassandra.dht.ComparableObjectToken&lt;java.lang.String&gt; implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>5464084395277974963L</dd> </dl> </li> <li class="blockList"><a name="org.apache.cassandra.dht.RandomPartitioner.BigIntegerToken"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/RandomPartitioner.BigIntegerToken.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.RandomPartitioner.BigIntegerToken</a> extends org.apache.cassandra.dht.ComparableObjectToken&lt;java.math.BigInteger&gt; implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>-5833589141319293006L</dd> </dl> </li> <li class="blockList"><a name="org.apache.cassandra.dht.Range"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/Range.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.Range</a> extends <a href="org/apache/cassandra/dht/AbstractBounds.html" title="class in org.apache.cassandra.dht">AbstractBounds</a>&lt;<a href="org/apache/cassandra/dht/Range.html" title="type parameter in Range">T</a> extends <a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/Range.html" title="type parameter in Range">T</a>&gt;&gt; implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>1L</dd> </dl> </li> <li class="blockList"><a name="org.apache.cassandra.dht.Token"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/dht/Token.html" title="class in org.apache.cassandra.dht">org.apache.cassandra.dht.Token</a> extends java.lang.Object implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>1L</dd> </dl> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.exceptions</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.exceptions.AlreadyExistsException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/AlreadyExistsException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.AlreadyExistsException</a> extends <a href="org/apache/cassandra/exceptions/ConfigurationException.html" title="class in org.apache.cassandra.exceptions">ConfigurationException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>ksName</h4> <pre>java.lang.String ksName</pre> </li> <li class="blockListLast"> <h4>cfName</h4> <pre>java.lang.String cfName</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.AuthenticationException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/AuthenticationException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.AuthenticationException</a> extends <a href="org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">RequestValidationException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.CassandraException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/CassandraException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.CassandraException</a> extends java.lang.RuntimeException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>code</h4> <pre><a href="org/apache/cassandra/exceptions/ExceptionCode.html" title="enum in org.apache.cassandra.exceptions">ExceptionCode</a> code</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.ConfigurationException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/ConfigurationException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.ConfigurationException</a> extends <a href="org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">RequestValidationException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>logStackTrace</h4> <pre>boolean logStackTrace</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.FunctionExecutionException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/FunctionExecutionException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.FunctionExecutionException</a> extends <a href="org/apache/cassandra/exceptions/RequestExecutionException.html" title="class in org.apache.cassandra.exceptions">RequestExecutionException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>functionName</h4> <pre><a href="org/apache/cassandra/cql3/functions/FunctionName.html" title="class in org.apache.cassandra.cql3.functions">FunctionName</a> functionName</pre> </li> <li class="blockList"> <h4>argTypes</h4> <pre>java.util.List&lt;E&gt; argTypes</pre> </li> <li class="blockListLast"> <h4>detail</h4> <pre>java.lang.String detail</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.InvalidRequestException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/InvalidRequestException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.InvalidRequestException</a> extends <a href="org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">RequestValidationException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.IsBootstrappingException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/IsBootstrappingException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.IsBootstrappingException</a> extends <a href="org/apache/cassandra/exceptions/RequestExecutionException.html" title="class in org.apache.cassandra.exceptions">RequestExecutionException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.OverloadedException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/OverloadedException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.OverloadedException</a> extends <a href="org/apache/cassandra/exceptions/RequestExecutionException.html" title="class in org.apache.cassandra.exceptions">RequestExecutionException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.PreparedQueryNotFoundException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/PreparedQueryNotFoundException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.PreparedQueryNotFoundException</a> extends <a href="org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">RequestValidationException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>id</h4> <pre><a href="org/apache/cassandra/utils/MD5Digest.html" title="class in org.apache.cassandra.utils">MD5Digest</a> id</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.ReadFailureException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/ReadFailureException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.ReadFailureException</a> extends <a href="org/apache/cassandra/exceptions/RequestFailureException.html" title="class in org.apache.cassandra.exceptions">RequestFailureException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>dataPresent</h4> <pre>boolean dataPresent</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.ReadTimeoutException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/ReadTimeoutException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.ReadTimeoutException</a> extends <a href="org/apache/cassandra/exceptions/RequestTimeoutException.html" title="class in org.apache.cassandra.exceptions">RequestTimeoutException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>dataPresent</h4> <pre>boolean dataPresent</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.RepairException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/RepairException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.RepairException</a> extends java.lang.Exception implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>desc</h4> <pre><a href="org/apache/cassandra/repair/RepairJobDesc.html" title="class in org.apache.cassandra.repair">RepairJobDesc</a> desc</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.RequestExecutionException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/RequestExecutionException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.RequestExecutionException</a> extends <a href="org/apache/cassandra/exceptions/CassandraException.html" title="class in org.apache.cassandra.exceptions">CassandraException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.RequestFailureException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/RequestFailureException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.RequestFailureException</a> extends <a href="org/apache/cassandra/exceptions/RequestExecutionException.html" title="class in org.apache.cassandra.exceptions">RequestExecutionException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>consistency</h4> <pre><a href="org/apache/cassandra/db/ConsistencyLevel.html" title="enum in org.apache.cassandra.db">ConsistencyLevel</a> consistency</pre> </li> <li class="blockList"> <h4>received</h4> <pre>int received</pre> </li> <li class="blockList"> <h4>failures</h4> <pre>int failures</pre> </li> <li class="blockListLast"> <h4>blockFor</h4> <pre>int blockFor</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.RequestTimeoutException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/RequestTimeoutException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.RequestTimeoutException</a> extends <a href="org/apache/cassandra/exceptions/RequestExecutionException.html" title="class in org.apache.cassandra.exceptions">RequestExecutionException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>consistency</h4> <pre><a href="org/apache/cassandra/db/ConsistencyLevel.html" title="enum in org.apache.cassandra.db">ConsistencyLevel</a> consistency</pre> </li> <li class="blockList"> <h4>received</h4> <pre>int received</pre> </li> <li class="blockListLast"> <h4>blockFor</h4> <pre>int blockFor</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.RequestValidationException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.RequestValidationException</a> extends <a href="org/apache/cassandra/exceptions/CassandraException.html" title="class in org.apache.cassandra.exceptions">CassandraException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.StartupException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/StartupException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.StartupException</a> extends java.lang.Exception implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>returnCode</h4> <pre>int returnCode</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.SyntaxException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/SyntaxException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.SyntaxException</a> extends <a href="org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">RequestValidationException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.TruncateException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/TruncateException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.TruncateException</a> extends <a href="org/apache/cassandra/exceptions/RequestExecutionException.html" title="class in org.apache.cassandra.exceptions">RequestExecutionException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.UnauthorizedException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/UnauthorizedException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.UnauthorizedException</a> extends <a href="org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">RequestValidationException</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.UnavailableException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/UnavailableException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.UnavailableException</a> extends <a href="org/apache/cassandra/exceptions/RequestExecutionException.html" title="class in org.apache.cassandra.exceptions">RequestExecutionException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>consistency</h4> <pre><a href="org/apache/cassandra/db/ConsistencyLevel.html" title="enum in org.apache.cassandra.db">ConsistencyLevel</a> consistency</pre> </li> <li class="blockList"> <h4>required</h4> <pre>int required</pre> </li> <li class="blockListLast"> <h4>alive</h4> <pre>int alive</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.UnrecognizedEntityException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/UnrecognizedEntityException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.UnrecognizedEntityException</a> extends <a href="org/apache/cassandra/exceptions/InvalidRequestException.html" title="class in org.apache.cassandra.exceptions">InvalidRequestException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>entity</h4> <pre><a href="org/apache/cassandra/cql3/ColumnIdentifier.html" title="class in org.apache.cassandra.cql3">ColumnIdentifier</a> entity</pre> <div class="block">The unrecognized entity.</div> </li> <li class="blockListLast"> <h4>relation</h4> <pre><a href="org/apache/cassandra/cql3/Relation.html" title="class in org.apache.cassandra.cql3">Relation</a> relation</pre> <div class="block">The entity relation.</div> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.WriteFailureException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/WriteFailureException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.WriteFailureException</a> extends <a href="org/apache/cassandra/exceptions/RequestFailureException.html" title="class in org.apache.cassandra.exceptions">RequestFailureException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>writeType</h4> <pre><a href="org/apache/cassandra/db/WriteType.html" title="enum in org.apache.cassandra.db">WriteType</a> writeType</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.exceptions.WriteTimeoutException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/exceptions/WriteTimeoutException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.WriteTimeoutException</a> extends <a href="org/apache/cassandra/exceptions/RequestTimeoutException.html" title="class in org.apache.cassandra.exceptions">RequestTimeoutException</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>writeType</h4> <pre><a href="org/apache/cassandra/db/WriteType.html" title="enum in org.apache.cassandra.db">WriteType</a> writeType</pre> </li> </ul> </li> </ul> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.io</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.io.FSError"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/io/FSError.html" title="class in org.apache.cassandra.io">org.apache.cassandra.io.FSError</a> extends java.io.IOError implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>path</h4> <pre>java.io.File path</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.io.FSReadError"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/io/FSReadError.html" title="class in org.apache.cassandra.io">org.apache.cassandra.io.FSReadError</a> extends <a href="org/apache/cassandra/io/FSError.html" title="class in org.apache.cassandra.io">FSError</a> implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.io.FSWriteError"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/io/FSWriteError.html" title="class in org.apache.cassandra.io">org.apache.cassandra.io.FSWriteError</a> extends <a href="org/apache/cassandra/io/FSError.html" title="class in org.apache.cassandra.io">FSError</a> implements Serializable</h3> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.io.compress</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.io.compress.CorruptBlockException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/io/compress/CorruptBlockException.html" title="class in org.apache.cassandra.io.compress">org.apache.cassandra.io.compress.CorruptBlockException</a> extends java.io.IOException implements Serializable</h3> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.io.sstable</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.io.sstable.CorruptSSTableException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/io/sstable/CorruptSSTableException.html" title="class in org.apache.cassandra.io.sstable">org.apache.cassandra.io.sstable.CorruptSSTableException</a> extends java.lang.RuntimeException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>path</h4> <pre>java.io.File path</pre> </li> </ul> </li> </ul> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.io.util</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.io.util.ChecksummedRandomAccessReader.CorruptFileException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/io/util/ChecksummedRandomAccessReader.CorruptFileException.html" title="class in org.apache.cassandra.io.util">org.apache.cassandra.io.util.ChecksummedRandomAccessReader.CorruptFileException</a> extends java.lang.RuntimeException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>file</h4> <pre>java.io.File file</pre> </li> </ul> </li> </ul> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.serializers</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.serializers.MarshalException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/serializers/MarshalException.html" title="class in org.apache.cassandra.serializers">org.apache.cassandra.serializers.MarshalException</a> extends java.lang.RuntimeException implements Serializable</h3> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.service</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.service.DigestMismatchException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/service/DigestMismatchException.html" title="class in org.apache.cassandra.service">org.apache.cassandra.service.DigestMismatchException</a> extends java.lang.Exception implements Serializable</h3> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.streaming</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.streaming.ProgressInfo"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/streaming/ProgressInfo.html" title="class in org.apache.cassandra.streaming">org.apache.cassandra.streaming.ProgressInfo</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>peer</h4> <pre>java.net.InetAddress peer</pre> </li> <li class="blockList"> <h4>sessionIndex</h4> <pre>int sessionIndex</pre> </li> <li class="blockList"> <h4>fileName</h4> <pre>java.lang.String fileName</pre> </li> <li class="blockList"> <h4>direction</h4> <pre><a href="org/apache/cassandra/streaming/ProgressInfo.Direction.html" title="enum in org.apache.cassandra.streaming">ProgressInfo.Direction</a> direction</pre> </li> <li class="blockList"> <h4>currentBytes</h4> <pre>long currentBytes</pre> </li> <li class="blockListLast"> <h4>totalBytes</h4> <pre>long totalBytes</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.streaming.SessionInfo"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/streaming/SessionInfo.html" title="class in org.apache.cassandra.streaming">org.apache.cassandra.streaming.SessionInfo</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>peer</h4> <pre>java.net.InetAddress peer</pre> </li> <li class="blockList"> <h4>sessionIndex</h4> <pre>int sessionIndex</pre> </li> <li class="blockList"> <h4>connecting</h4> <pre>java.net.InetAddress connecting</pre> </li> <li class="blockList"> <h4>receivingSummaries</h4> <pre>java.util.Collection&lt;E&gt; receivingSummaries</pre> <div class="block">Immutable collection of receiving summaries</div> </li> <li class="blockList"> <h4>sendingSummaries</h4> <pre>java.util.Collection&lt;E&gt; sendingSummaries</pre> <div class="block">Immutable collection of sending summaries</div> </li> <li class="blockList"> <h4>state</h4> <pre><a href="org/apache/cassandra/streaming/StreamSession.State.html" title="enum in org.apache.cassandra.streaming">StreamSession.State</a> state</pre> <div class="block">Current session state</div> </li> <li class="blockList"> <h4>receivingFiles</h4> <pre>java.util.Map&lt;K,V&gt; receivingFiles</pre> </li> <li class="blockListLast"> <h4>sendingFiles</h4> <pre>java.util.Map&lt;K,V&gt; sendingFiles</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.streaming.StreamException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/streaming/StreamException.html" title="class in org.apache.cassandra.streaming">org.apache.cassandra.streaming.StreamException</a> extends java.lang.Exception implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>finalState</h4> <pre><a href="org/apache/cassandra/streaming/StreamState.html" title="class in org.apache.cassandra.streaming">StreamState</a> finalState</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.streaming.StreamState"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/streaming/StreamState.html" title="class in org.apache.cassandra.streaming">org.apache.cassandra.streaming.StreamState</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>planId</h4> <pre>java.util.UUID planId</pre> </li> <li class="blockList"> <h4>description</h4> <pre>java.lang.String description</pre> </li> <li class="blockListLast"> <h4>sessions</h4> <pre>java.util.Set&lt;E&gt; sessions</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.streaming.StreamSummary"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/streaming/StreamSummary.html" title="class in org.apache.cassandra.streaming">org.apache.cassandra.streaming.StreamSummary</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>cfId</h4> <pre>java.util.UUID cfId</pre> </li> <li class="blockList"> <h4>files</h4> <pre>int files</pre> <div class="block">Number of files to transfer. Can be 0 if nothing to transfer for some streaming request.</div> </li> <li class="blockListLast"> <h4>totalSize</h4> <pre>long totalSize</pre> </li> </ul> </li> </ul> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.thrift</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.thrift.AuthenticationException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/AuthenticationException.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.AuthenticationException</a> extends org.apache.thrift.TException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>why</h4> <pre>java.lang.String why</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.AuthenticationRequest"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/AuthenticationRequest.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.AuthenticationRequest</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>credentials</h4> <pre>java.util.Map&lt;K,V&gt; credentials</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.AuthorizationException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/AuthorizationException.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.AuthorizationException</a> extends org.apache.thrift.TException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>why</h4> <pre>java.lang.String why</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CASResult"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CASResult.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CASResult</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>boolean success</pre> </li> <li class="blockList"> <h4>current_values</h4> <pre>java.util.List&lt;E&gt; current_values</pre> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/CASResult._Fields.html" title="enum in org.apache.cassandra.thrift">CASResult._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.add_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.add_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.add_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>column</h4> <pre><a href="org/apache/cassandra/thrift/CounterColumn.html" title="class in org.apache.cassandra.thrift">CounterColumn</a> column</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.add_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.add_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.add_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.atomic_batch_mutate_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.atomic_batch_mutate_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.atomic_batch_mutate_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>mutation_map</h4> <pre>java.util.Map&lt;K,V&gt; mutation_map</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.atomic_batch_mutate_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.atomic_batch_mutate_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.atomic_batch_mutate_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.batch_mutate_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.batch_mutate_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.batch_mutate_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>mutation_map</h4> <pre>java.util.Map&lt;K,V&gt; mutation_map</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.batch_mutate_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.batch_mutate_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.batch_mutate_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.cas_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.cas_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.cas_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>column_family</h4> <pre>java.lang.String column_family</pre> </li> <li class="blockList"> <h4>expected</h4> <pre>java.util.List&lt;E&gt; expected</pre> </li> <li class="blockList"> <h4>updates</h4> <pre>java.util.List&lt;E&gt; updates</pre> </li> <li class="blockList"> <h4>serial_consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> serial_consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> <li class="blockListLast"> <h4>commit_consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> commit_consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.cas_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.cas_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.cas_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/CASResult.html" title="class in org.apache.cassandra.thrift">CASResult</a> success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_cluster_name_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_cluster_name_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_cluster_name_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_cluster_name_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_cluster_name_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_cluster_name_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>success</h4> <pre>java.lang.String success</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_keyspace_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_keyspace_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_keyspace_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>keyspace</h4> <pre>java.lang.String keyspace</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_keyspace_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_keyspace_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_keyspace_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/KsDef.html" title="class in org.apache.cassandra.thrift">KsDef</a> success</pre> </li> <li class="blockList"> <h4>nfe</h4> <pre><a href="org/apache/cassandra/thrift/NotFoundException.html" title="class in org.apache.cassandra.thrift">NotFoundException</a> nfe</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_keyspaces_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_keyspaces_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_keyspaces_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_keyspaces_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_keyspaces_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_keyspaces_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_local_ring_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_local_ring_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_local_ring_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>keyspace</h4> <pre>java.lang.String keyspace</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_local_ring_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_local_ring_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_local_ring_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_partitioner_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_partitioner_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_partitioner_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_partitioner_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_partitioner_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_partitioner_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>success</h4> <pre>java.lang.String success</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_ring_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_ring_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_ring_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>keyspace</h4> <pre>java.lang.String keyspace</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_ring_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_ring_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_ring_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_schema_versions_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_schema_versions_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_schema_versions_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_schema_versions_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_schema_versions_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_schema_versions_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.Map&lt;K,V&gt; success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_snitch_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_snitch_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_snitch_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_snitch_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_snitch_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_snitch_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>success</h4> <pre>java.lang.String success</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_splits_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_splits_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_splits_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>cfName</h4> <pre>java.lang.String cfName</pre> </li> <li class="blockList"> <h4>start_token</h4> <pre>java.lang.String start_token</pre> </li> <li class="blockList"> <h4>end_token</h4> <pre>java.lang.String end_token</pre> </li> <li class="blockList"> <h4>keys_per_split</h4> <pre>int keys_per_split</pre> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_splits_ex_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_splits_ex_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_splits_ex_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>cfName</h4> <pre>java.lang.String cfName</pre> </li> <li class="blockList"> <h4>start_token</h4> <pre>java.lang.String start_token</pre> </li> <li class="blockList"> <h4>end_token</h4> <pre>java.lang.String end_token</pre> </li> <li class="blockList"> <h4>keys_per_split</h4> <pre>int keys_per_split</pre> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_splits_ex_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_splits_ex_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_splits_ex_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_splits_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_splits_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_splits_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_token_map_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_token_map_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_token_map_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_token_map_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_token_map_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_token_map_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.Map&lt;K,V&gt; success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_version_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_version_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_version_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.describe_version_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.describe_version_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.describe_version_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>success</h4> <pre>java.lang.String success</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.execute_cql_query_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.execute_cql_query_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.execute_cql_query_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>query</h4> <pre>java.nio.ByteBuffer query</pre> </li> <li class="blockListLast"> <h4>compression</h4> <pre><a href="org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift">Compression</a> compression</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift"><code>Compression</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.execute_cql_query_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.execute_cql_query_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.execute_cql_query_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/CqlResult.html" title="class in org.apache.cassandra.thrift">CqlResult</a> success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockList"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.execute_cql3_query_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.execute_cql3_query_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.execute_cql3_query_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>query</h4> <pre>java.nio.ByteBuffer query</pre> </li> <li class="blockList"> <h4>compression</h4> <pre><a href="org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift">Compression</a> compression</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift"><code>Compression</code></a></dd> </dl> </li> <li class="blockListLast"> <h4>consistency</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.execute_cql3_query_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.execute_cql3_query_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.execute_cql3_query_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/CqlResult.html" title="class in org.apache.cassandra.thrift">CqlResult</a> success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockList"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.execute_prepared_cql_query_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.execute_prepared_cql_query_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.execute_prepared_cql_query_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>itemId</h4> <pre>int itemId</pre> </li> <li class="blockList"> <h4>values</h4> <pre>java.util.List&lt;E&gt; values</pre> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.execute_prepared_cql_query_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.execute_prepared_cql_query_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.execute_prepared_cql_query_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/CqlResult.html" title="class in org.apache.cassandra.thrift">CqlResult</a> success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockList"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.execute_prepared_cql3_query_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.execute_prepared_cql3_query_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.execute_prepared_cql3_query_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>itemId</h4> <pre>int itemId</pre> </li> <li class="blockList"> <h4>values</h4> <pre>java.util.List&lt;E&gt; values</pre> </li> <li class="blockList"> <h4>consistency</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.execute_prepared_cql3_query_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.execute_prepared_cql3_query_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.execute_prepared_cql3_query_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/CqlResult.html" title="class in org.apache.cassandra.thrift">CqlResult</a> success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockList"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>column_path</h4> <pre><a href="org/apache/cassandra/thrift/ColumnPath.html" title="class in org.apache.cassandra.thrift">ColumnPath</a> column_path</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_count_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_count_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_count_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>predicate</h4> <pre><a href="org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> predicate</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_count_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_count_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_count_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>int success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockList"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_indexed_slices_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_indexed_slices_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>index_clause</h4> <pre><a href="org/apache/cassandra/thrift/IndexClause.html" title="class in org.apache.cassandra.thrift">IndexClause</a> index_clause</pre> </li> <li class="blockList"> <h4>column_predicate</h4> <pre><a href="org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> column_predicate</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_indexed_slices_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_indexed_slices_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_indexed_slices_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_multi_slice_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_multi_slice_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_multi_slice_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>request</h4> <pre><a href="org/apache/cassandra/thrift/MultiSliceRequest.html" title="class in org.apache.cassandra.thrift">MultiSliceRequest</a> request</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_multi_slice_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_multi_slice_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_multi_slice_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_paged_slice_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_paged_slice_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_paged_slice_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column_family</h4> <pre>java.lang.String column_family</pre> </li> <li class="blockList"> <h4>range</h4> <pre><a href="org/apache/cassandra/thrift/KeyRange.html" title="class in org.apache.cassandra.thrift">KeyRange</a> range</pre> </li> <li class="blockList"> <h4>start_column</h4> <pre>java.nio.ByteBuffer start_column</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_paged_slice_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_paged_slice_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_paged_slice_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_range_slices_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_range_slices_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_range_slices_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>predicate</h4> <pre><a href="org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> predicate</pre> </li> <li class="blockList"> <h4>range</h4> <pre><a href="org/apache/cassandra/thrift/KeyRange.html" title="class in org.apache.cassandra.thrift">KeyRange</a> range</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_range_slices_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_range_slices_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_range_slices_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/ColumnOrSuperColumn.html" title="class in org.apache.cassandra.thrift">ColumnOrSuperColumn</a> success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>nfe</h4> <pre><a href="org/apache/cassandra/thrift/NotFoundException.html" title="class in org.apache.cassandra.thrift">NotFoundException</a> nfe</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_slice_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_slice_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_slice_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>predicate</h4> <pre><a href="org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> predicate</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.get_slice_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.get_slice_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.get_slice_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.List&lt;E&gt; success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.insert_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.insert_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.insert_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>column</h4> <pre><a href="org/apache/cassandra/thrift/Column.html" title="class in org.apache.cassandra.thrift">Column</a> column</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.insert_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.insert_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.insert_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.login_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.login_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.login_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>auth_request</h4> <pre><a href="org/apache/cassandra/thrift/AuthenticationRequest.html" title="class in org.apache.cassandra.thrift">AuthenticationRequest</a> auth_request</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.login_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.login_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.login_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>authnx</h4> <pre><a href="org/apache/cassandra/thrift/AuthenticationException.html" title="class in org.apache.cassandra.thrift">AuthenticationException</a> authnx</pre> </li> <li class="blockListLast"> <h4>authzx</h4> <pre><a href="org/apache/cassandra/thrift/AuthorizationException.html" title="class in org.apache.cassandra.thrift">AuthorizationException</a> authzx</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.multiget_count_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.multiget_count_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.multiget_count_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>keys</h4> <pre>java.util.List&lt;E&gt; keys</pre> </li> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>predicate</h4> <pre><a href="org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> predicate</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.multiget_count_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.multiget_count_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.multiget_count_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.Map&lt;K,V&gt; success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.multiget_slice_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.multiget_slice_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.multiget_slice_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>keys</h4> <pre>java.util.List&lt;E&gt; keys</pre> </li> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>predicate</h4> <pre><a href="org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> predicate</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.multiget_slice_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.multiget_slice_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.multiget_slice_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.util.Map&lt;K,V&gt; success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.prepare_cql_query_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.prepare_cql_query_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.prepare_cql_query_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>query</h4> <pre>java.nio.ByteBuffer query</pre> </li> <li class="blockListLast"> <h4>compression</h4> <pre><a href="org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift">Compression</a> compression</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift"><code>Compression</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.prepare_cql_query_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.prepare_cql_query_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.prepare_cql_query_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/CqlPreparedResult.html" title="class in org.apache.cassandra.thrift">CqlPreparedResult</a> success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.prepare_cql3_query_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.prepare_cql3_query_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.prepare_cql3_query_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>query</h4> <pre>java.nio.ByteBuffer query</pre> </li> <li class="blockListLast"> <h4>compression</h4> <pre><a href="org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift">Compression</a> compression</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift"><code>Compression</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.prepare_cql3_query_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.prepare_cql3_query_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.prepare_cql3_query_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre><a href="org/apache/cassandra/thrift/CqlPreparedResult.html" title="class in org.apache.cassandra.thrift">CqlPreparedResult</a> success</pre> </li> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.remove_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.remove_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.remove_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>column_path</h4> <pre><a href="org/apache/cassandra/thrift/ColumnPath.html" title="class in org.apache.cassandra.thrift">ColumnPath</a> column_path</pre> </li> <li class="blockList"> <h4>timestamp</h4> <pre>long timestamp</pre> </li> <li class="blockList"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.remove_counter_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.remove_counter_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.remove_counter_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>path</h4> <pre><a href="org/apache/cassandra/thrift/ColumnPath.html" title="class in org.apache.cassandra.thrift">ColumnPath</a> path</pre> </li> <li class="blockListLast"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.remove_counter_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.remove_counter_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.remove_counter_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.remove_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.remove_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.remove_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.set_cql_version_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.set_cql_version_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.set_cql_version_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>version</h4> <pre>java.lang.String version</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.set_cql_version_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.set_cql_version_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.set_cql_version_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.set_keyspace_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.set_keyspace_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.set_keyspace_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>keyspace</h4> <pre>java.lang.String keyspace</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.set_keyspace_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.set_keyspace_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.set_keyspace_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_add_column_family_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_add_column_family_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_add_column_family_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>cf_def</h4> <pre><a href="org/apache/cassandra/thrift/CfDef.html" title="class in org.apache.cassandra.thrift">CfDef</a> cf_def</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_add_column_family_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_add_column_family_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_add_column_family_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.lang.String success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_add_keyspace_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_add_keyspace_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_add_keyspace_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>ks_def</h4> <pre><a href="org/apache/cassandra/thrift/KsDef.html" title="class in org.apache.cassandra.thrift">KsDef</a> ks_def</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_add_keyspace_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_add_keyspace_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_add_keyspace_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.lang.String success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_drop_column_family_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_drop_column_family_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_drop_column_family_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>column_family</h4> <pre>java.lang.String column_family</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_drop_column_family_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_drop_column_family_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_drop_column_family_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.lang.String success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_drop_keyspace_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_drop_keyspace_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_drop_keyspace_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>keyspace</h4> <pre>java.lang.String keyspace</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_drop_keyspace_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_drop_keyspace_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_drop_keyspace_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.lang.String success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_update_column_family_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_update_column_family_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_update_column_family_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>cf_def</h4> <pre><a href="org/apache/cassandra/thrift/CfDef.html" title="class in org.apache.cassandra.thrift">CfDef</a> cf_def</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_update_column_family_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_update_column_family_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_update_column_family_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.lang.String success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_update_keyspace_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_update_keyspace_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_update_keyspace_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>ks_def</h4> <pre><a href="org/apache/cassandra/thrift/KsDef.html" title="class in org.apache.cassandra.thrift">KsDef</a> ks_def</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.system_update_keyspace_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.system_update_keyspace_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.system_update_keyspace_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>success</h4> <pre>java.lang.String success</pre> </li> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockListLast"> <h4>sde</h4> <pre><a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a> sde</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.trace_next_query_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.trace_next_query_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.trace_next_query_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.trace_next_query_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.trace_next_query_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.trace_next_query_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>success</h4> <pre>java.nio.ByteBuffer success</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.truncate_args"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.truncate_args.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.truncate_args</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>cfname</h4> <pre>java.lang.String cfname</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Cassandra.truncate_result"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Cassandra.truncate_result.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Cassandra.truncate_result</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>ire</h4> <pre><a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a> ire</pre> </li> <li class="blockList"> <h4>ue</h4> <pre><a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a> ue</pre> </li> <li class="blockListLast"> <h4>te</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a> te</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CfDef"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CfDef.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CfDef</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>keyspace</h4> <pre>java.lang.String keyspace</pre> </li> <li class="blockList"> <h4>name</h4> <pre>java.lang.String name</pre> </li> <li class="blockList"> <h4>column_type</h4> <pre>java.lang.String column_type</pre> </li> <li class="blockList"> <h4>comparator_type</h4> <pre>java.lang.String comparator_type</pre> </li> <li class="blockList"> <h4>subcomparator_type</h4> <pre>java.lang.String subcomparator_type</pre> </li> <li class="blockList"> <h4>comment</h4> <pre>java.lang.String comment</pre> </li> <li class="blockList"> <h4>read_repair_chance</h4> <pre>double read_repair_chance</pre> </li> <li class="blockList"> <h4>column_metadata</h4> <pre>java.util.List&lt;E&gt; column_metadata</pre> </li> <li class="blockList"> <h4>gc_grace_seconds</h4> <pre>int gc_grace_seconds</pre> </li> <li class="blockList"> <h4>default_validation_class</h4> <pre>java.lang.String default_validation_class</pre> </li> <li class="blockList"> <h4>id</h4> <pre>int id</pre> </li> <li class="blockList"> <h4>min_compaction_threshold</h4> <pre>int min_compaction_threshold</pre> </li> <li class="blockList"> <h4>max_compaction_threshold</h4> <pre>int max_compaction_threshold</pre> </li> <li class="blockList"> <h4>key_validation_class</h4> <pre>java.lang.String key_validation_class</pre> </li> <li class="blockList"> <h4>key_alias</h4> <pre>java.nio.ByteBuffer key_alias</pre> </li> <li class="blockList"> <h4>compaction_strategy</h4> <pre>java.lang.String compaction_strategy</pre> </li> <li class="blockList"> <h4>compaction_strategy_options</h4> <pre>java.util.Map&lt;K,V&gt; compaction_strategy_options</pre> </li> <li class="blockList"> <h4>compression_options</h4> <pre>java.util.Map&lt;K,V&gt; compression_options</pre> </li> <li class="blockList"> <h4>bloom_filter_fp_chance</h4> <pre>double bloom_filter_fp_chance</pre> </li> <li class="blockList"> <h4>caching</h4> <pre>java.lang.String caching</pre> </li> <li class="blockList"> <h4>dclocal_read_repair_chance</h4> <pre>double dclocal_read_repair_chance</pre> </li> <li class="blockList"> <h4>memtable_flush_period_in_ms</h4> <pre>int memtable_flush_period_in_ms</pre> </li> <li class="blockList"> <h4>default_time_to_live</h4> <pre>int default_time_to_live</pre> </li> <li class="blockList"> <h4>speculative_retry</h4> <pre>java.lang.String speculative_retry</pre> </li> <li class="blockList"> <h4>triggers</h4> <pre>java.util.List&lt;E&gt; triggers</pre> </li> <li class="blockList"> <h4>cells_per_row_to_cache</h4> <pre>java.lang.String cells_per_row_to_cache</pre> </li> <li class="blockList"> <h4>min_index_interval</h4> <pre>int min_index_interval</pre> </li> <li class="blockList"> <h4>max_index_interval</h4> <pre>int max_index_interval</pre> </li> <li class="blockList"> <h4>row_cache_size</h4> <pre>double row_cache_size</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>key_cache_size</h4> <pre>double key_cache_size</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>row_cache_save_period_in_seconds</h4> <pre>int row_cache_save_period_in_seconds</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>key_cache_save_period_in_seconds</h4> <pre>int key_cache_save_period_in_seconds</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>memtable_flush_after_mins</h4> <pre>int memtable_flush_after_mins</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>memtable_throughput_in_mb</h4> <pre>int memtable_throughput_in_mb</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>memtable_operations_in_millions</h4> <pre>double memtable_operations_in_millions</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>replicate_on_write</h4> <pre>boolean replicate_on_write</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>merge_shards_chance</h4> <pre>double merge_shards_chance</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>row_cache_provider</h4> <pre>java.lang.String row_cache_provider</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>row_cache_keys_to_save</h4> <pre>int row_cache_keys_to_save</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>populate_io_cache_on_flush</h4> <pre>boolean populate_io_cache_on_flush</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>index_interval</h4> <pre>int index_interval</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>int __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/CfDef._Fields.html" title="enum in org.apache.cassandra.thrift">CfDef._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CfSplit"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CfSplit.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CfSplit</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>start_token</h4> <pre>java.lang.String start_token</pre> </li> <li class="blockList"> <h4>end_token</h4> <pre>java.lang.String end_token</pre> </li> <li class="blockList"> <h4>row_count</h4> <pre>long row_count</pre> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Column"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Column.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Column</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>name</h4> <pre>java.nio.ByteBuffer name</pre> </li> <li class="blockList"> <h4>value</h4> <pre>java.nio.ByteBuffer value</pre> </li> <li class="blockList"> <h4>timestamp</h4> <pre>long timestamp</pre> </li> <li class="blockList"> <h4>ttl</h4> <pre>int ttl</pre> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/Column._Fields.html" title="enum in org.apache.cassandra.thrift">Column._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.ColumnDef"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/ColumnDef.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.ColumnDef</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>name</h4> <pre>java.nio.ByteBuffer name</pre> </li> <li class="blockList"> <h4>validation_class</h4> <pre>java.lang.String validation_class</pre> </li> <li class="blockList"> <h4>index_type</h4> <pre><a href="org/apache/cassandra/thrift/IndexType.html" title="enum in org.apache.cassandra.thrift">IndexType</a> index_type</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/IndexType.html" title="enum in org.apache.cassandra.thrift"><code>IndexType</code></a></dd> </dl> </li> <li class="blockList"> <h4>index_name</h4> <pre>java.lang.String index_name</pre> </li> <li class="blockList"> <h4>index_options</h4> <pre>java.util.Map&lt;K,V&gt; index_options</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/ColumnDef._Fields.html" title="enum in org.apache.cassandra.thrift">ColumnDef._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.ColumnOrSuperColumn"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/ColumnOrSuperColumn.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.ColumnOrSuperColumn</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column</h4> <pre><a href="org/apache/cassandra/thrift/Column.html" title="class in org.apache.cassandra.thrift">Column</a> column</pre> </li> <li class="blockList"> <h4>super_column</h4> <pre><a href="org/apache/cassandra/thrift/SuperColumn.html" title="class in org.apache.cassandra.thrift">SuperColumn</a> super_column</pre> </li> <li class="blockList"> <h4>counter_column</h4> <pre><a href="org/apache/cassandra/thrift/CounterColumn.html" title="class in org.apache.cassandra.thrift">CounterColumn</a> counter_column</pre> </li> <li class="blockList"> <h4>counter_super_column</h4> <pre><a href="org/apache/cassandra/thrift/CounterSuperColumn.html" title="class in org.apache.cassandra.thrift">CounterSuperColumn</a> counter_super_column</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/ColumnOrSuperColumn._Fields.html" title="enum in org.apache.cassandra.thrift">ColumnOrSuperColumn._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.ColumnParent"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.ColumnParent</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column_family</h4> <pre>java.lang.String column_family</pre> </li> <li class="blockList"> <h4>super_column</h4> <pre>java.nio.ByteBuffer super_column</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent._Fields.html" title="enum in org.apache.cassandra.thrift">ColumnParent._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.ColumnPath"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/ColumnPath.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.ColumnPath</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column_family</h4> <pre>java.lang.String column_family</pre> </li> <li class="blockList"> <h4>super_column</h4> <pre>java.nio.ByteBuffer super_column</pre> </li> <li class="blockList"> <h4>column</h4> <pre>java.nio.ByteBuffer column</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/ColumnPath._Fields.html" title="enum in org.apache.cassandra.thrift">ColumnPath._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.ColumnSlice"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/ColumnSlice.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.ColumnSlice</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>start</h4> <pre>java.nio.ByteBuffer start</pre> </li> <li class="blockList"> <h4>finish</h4> <pre>java.nio.ByteBuffer finish</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/ColumnSlice._Fields.html" title="enum in org.apache.cassandra.thrift">ColumnSlice._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CounterColumn"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CounterColumn.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CounterColumn</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>name</h4> <pre>java.nio.ByteBuffer name</pre> </li> <li class="blockList"> <h4>value</h4> <pre>long value</pre> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CounterSuperColumn"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CounterSuperColumn.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CounterSuperColumn</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>name</h4> <pre>java.nio.ByteBuffer name</pre> </li> <li class="blockListLast"> <h4>columns</h4> <pre>java.util.List&lt;E&gt; columns</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CqlMetadata"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CqlMetadata.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CqlMetadata</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>name_types</h4> <pre>java.util.Map&lt;K,V&gt; name_types</pre> </li> <li class="blockList"> <h4>value_types</h4> <pre>java.util.Map&lt;K,V&gt; value_types</pre> </li> <li class="blockList"> <h4>default_name_type</h4> <pre>java.lang.String default_name_type</pre> </li> <li class="blockListLast"> <h4>default_value_type</h4> <pre>java.lang.String default_value_type</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CqlPreparedResult"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CqlPreparedResult.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CqlPreparedResult</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>itemId</h4> <pre>int itemId</pre> </li> <li class="blockList"> <h4>count</h4> <pre>int count</pre> </li> <li class="blockList"> <h4>variable_types</h4> <pre>java.util.List&lt;E&gt; variable_types</pre> </li> <li class="blockList"> <h4>variable_names</h4> <pre>java.util.List&lt;E&gt; variable_names</pre> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/CqlPreparedResult._Fields.html" title="enum in org.apache.cassandra.thrift">CqlPreparedResult._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CqlResult"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CqlResult.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CqlResult</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>type</h4> <pre><a href="org/apache/cassandra/thrift/CqlResultType.html" title="enum in org.apache.cassandra.thrift">CqlResultType</a> type</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/CqlResultType.html" title="enum in org.apache.cassandra.thrift"><code>CqlResultType</code></a></dd> </dl> </li> <li class="blockList"> <h4>rows</h4> <pre>java.util.List&lt;E&gt; rows</pre> </li> <li class="blockList"> <h4>num</h4> <pre>int num</pre> </li> <li class="blockList"> <h4>schema</h4> <pre><a href="org/apache/cassandra/thrift/CqlMetadata.html" title="class in org.apache.cassandra.thrift">CqlMetadata</a> schema</pre> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/CqlResult._Fields.html" title="enum in org.apache.cassandra.thrift">CqlResult._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.CqlRow"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/CqlRow.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.CqlRow</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockListLast"> <h4>columns</h4> <pre>java.util.List&lt;E&gt; columns</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Deletion"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Deletion.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Deletion</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>timestamp</h4> <pre>long timestamp</pre> </li> <li class="blockList"> <h4>super_column</h4> <pre>java.nio.ByteBuffer super_column</pre> </li> <li class="blockList"> <h4>predicate</h4> <pre><a href="org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> predicate</pre> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/Deletion._Fields.html" title="enum in org.apache.cassandra.thrift">Deletion._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.EndpointDetails"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/EndpointDetails.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.EndpointDetails</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>host</h4> <pre>java.lang.String host</pre> </li> <li class="blockList"> <h4>datacenter</h4> <pre>java.lang.String datacenter</pre> </li> <li class="blockList"> <h4>rack</h4> <pre>java.lang.String rack</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/EndpointDetails._Fields.html" title="enum in org.apache.cassandra.thrift">EndpointDetails._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.IndexClause"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/IndexClause.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.IndexClause</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>expressions</h4> <pre>java.util.List&lt;E&gt; expressions</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>start_key</h4> <pre>java.nio.ByteBuffer start_key</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockList"> <h4>count</h4> <pre>int count</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.IndexExpression"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/IndexExpression.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.IndexExpression</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column_name</h4> <pre>java.nio.ByteBuffer column_name</pre> </li> <li class="blockList"> <h4>op</h4> <pre><a href="org/apache/cassandra/thrift/IndexOperator.html" title="enum in org.apache.cassandra.thrift">IndexOperator</a> op</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/IndexOperator.html" title="enum in org.apache.cassandra.thrift"><code>IndexOperator</code></a></dd> </dl> </li> <li class="blockListLast"> <h4>value</h4> <pre>java.nio.ByteBuffer value</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.InvalidRequestException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.InvalidRequestException</a> extends org.apache.thrift.TException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>why</h4> <pre>java.lang.String why</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.KeyCount"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/KeyCount.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.KeyCount</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>count</h4> <pre>int count</pre> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.KeyRange"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/KeyRange.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.KeyRange</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>start_key</h4> <pre>java.nio.ByteBuffer start_key</pre> </li> <li class="blockList"> <h4>end_key</h4> <pre>java.nio.ByteBuffer end_key</pre> </li> <li class="blockList"> <h4>start_token</h4> <pre>java.lang.String start_token</pre> </li> <li class="blockList"> <h4>end_token</h4> <pre>java.lang.String end_token</pre> </li> <li class="blockList"> <h4>row_filter</h4> <pre>java.util.List&lt;E&gt; row_filter</pre> </li> <li class="blockList"> <h4>count</h4> <pre>int count</pre> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/KeyRange._Fields.html" title="enum in org.apache.cassandra.thrift">KeyRange._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.KeySlice"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/KeySlice.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.KeySlice</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockListLast"> <h4>columns</h4> <pre>java.util.List&lt;E&gt; columns</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.KsDef"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/KsDef.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.KsDef</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>name</h4> <pre>java.lang.String name</pre> </li> <li class="blockList"> <h4>strategy_class</h4> <pre>java.lang.String strategy_class</pre> </li> <li class="blockList"> <h4>strategy_options</h4> <pre>java.util.Map&lt;K,V&gt; strategy_options</pre> </li> <li class="blockList"> <h4>replication_factor</h4> <pre>int replication_factor</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">ignored</span></div> </li> <li class="blockList"> <h4>cf_defs</h4> <pre>java.util.List&lt;E&gt; cf_defs</pre> </li> <li class="blockList"> <h4>durable_writes</h4> <pre>boolean durable_writes</pre> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/KsDef._Fields.html" title="enum in org.apache.cassandra.thrift">KsDef._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.MultiSliceRequest"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/MultiSliceRequest.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.MultiSliceRequest</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>key</h4> <pre>java.nio.ByteBuffer key</pre> </li> <li class="blockList"> <h4>column_parent</h4> <pre><a href="org/apache/cassandra/thrift/ColumnParent.html" title="class in org.apache.cassandra.thrift">ColumnParent</a> column_parent</pre> </li> <li class="blockList"> <h4>column_slices</h4> <pre>java.util.List&lt;E&gt; column_slices</pre> </li> <li class="blockList"> <h4>reversed</h4> <pre>boolean reversed</pre> </li> <li class="blockList"> <h4>count</h4> <pre>int count</pre> </li> <li class="blockList"> <h4>consistency_level</h4> <pre><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift">ConsistencyLevel</a> consistency_level</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="org/apache/cassandra/thrift/ConsistencyLevel.html" title="enum in org.apache.cassandra.thrift"><code>ConsistencyLevel</code></a></dd> </dl> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/MultiSliceRequest._Fields.html" title="enum in org.apache.cassandra.thrift">MultiSliceRequest._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.Mutation"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/Mutation.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.Mutation</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column_or_supercolumn</h4> <pre><a href="org/apache/cassandra/thrift/ColumnOrSuperColumn.html" title="class in org.apache.cassandra.thrift">ColumnOrSuperColumn</a> column_or_supercolumn</pre> </li> <li class="blockList"> <h4>deletion</h4> <pre><a href="org/apache/cassandra/thrift/Deletion.html" title="class in org.apache.cassandra.thrift">Deletion</a> deletion</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/Mutation._Fields.html" title="enum in org.apache.cassandra.thrift">Mutation._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.NotFoundException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/NotFoundException.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.NotFoundException</a> extends org.apache.thrift.TException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.SchemaDisagreementException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.SchemaDisagreementException</a> extends org.apache.thrift.TException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.SlicePredicate"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.SlicePredicate</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>column_names</h4> <pre>java.util.List&lt;E&gt; column_names</pre> </li> <li class="blockList"> <h4>slice_range</h4> <pre><a href="org/apache/cassandra/thrift/SliceRange.html" title="class in org.apache.cassandra.thrift">SliceRange</a> slice_range</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/SlicePredicate._Fields.html" title="enum in org.apache.cassandra.thrift">SlicePredicate._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.SliceRange"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/SliceRange.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.SliceRange</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>start</h4> <pre>java.nio.ByteBuffer start</pre> </li> <li class="blockList"> <h4>finish</h4> <pre>java.nio.ByteBuffer finish</pre> </li> <li class="blockList"> <h4>reversed</h4> <pre>boolean reversed</pre> </li> <li class="blockList"> <h4>count</h4> <pre>int count</pre> </li> <li class="blockListLast"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.SuperColumn"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/SuperColumn.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.SuperColumn</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>name</h4> <pre>java.nio.ByteBuffer name</pre> </li> <li class="blockListLast"> <h4>columns</h4> <pre>java.util.List&lt;E&gt; columns</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.TimedOutException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.TimedOutException</a> extends org.apache.thrift.TException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>acknowledged_by</h4> <pre>int acknowledged_by</pre> <div class="block">if a write operation was acknowledged by some replicas but not by enough to satisfy the required ConsistencyLevel, the number of successful replies will be given here. In case of atomic_batch_mutate method this field will be set to -1 if the batch was written to the batchlog and to 0 if it wasn't.</div> </li> <li class="blockList"> <h4>acknowledged_by_batchlog</h4> <pre>boolean acknowledged_by_batchlog</pre> <div class="block">in case of atomic_batch_mutate method this field tells if the batch was written to the batchlog.</div> </li> <li class="blockList"> <h4>paxos_in_progress</h4> <pre>boolean paxos_in_progress</pre> <div class="block">for the CAS method, this field tells if we timed out during the paxos protocol, as opposed to during the commit of our update</div> </li> <li class="blockList"> <h4>__isset_bitfield</h4> <pre>byte __isset_bitfield</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/TimedOutException._Fields.html" title="enum in org.apache.cassandra.thrift">TimedOutException._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.TokenRange"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/TokenRange.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.TokenRange</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>start_token</h4> <pre>java.lang.String start_token</pre> </li> <li class="blockList"> <h4>end_token</h4> <pre>java.lang.String end_token</pre> </li> <li class="blockList"> <h4>endpoints</h4> <pre>java.util.List&lt;E&gt; endpoints</pre> </li> <li class="blockList"> <h4>rpc_endpoints</h4> <pre>java.util.List&lt;E&gt; rpc_endpoints</pre> </li> <li class="blockList"> <h4>endpoint_details</h4> <pre>java.util.List&lt;E&gt; endpoint_details</pre> </li> <li class="blockListLast"> <h4>optionals</h4> <pre><a href="org/apache/cassandra/thrift/TokenRange._Fields.html" title="enum in org.apache.cassandra.thrift">TokenRange._Fields</a>[] optionals</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.TriggerDef"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/TriggerDef.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.TriggerDef</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>name</h4> <pre>java.lang.String name</pre> </li> <li class="blockListLast"> <h4>options</h4> <pre>java.util.Map&lt;K,V&gt; options</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.thrift.UnavailableException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">org.apache.cassandra.thrift.UnavailableException</a> extends org.apache.thrift.TException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockList"> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;in) throws java.io.IOException, java.lang.ClassNotFoundException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> <dd><code>java.lang.ClassNotFoundException</code></dd> </dl> </li> <li class="blockListLast"> <h4>writeObject</h4> <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;out) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> </li> </ul> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.transport</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.transport.ProtocolException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/transport/ProtocolException.html" title="class in org.apache.cassandra.transport">org.apache.cassandra.transport.ProtocolException</a> extends java.lang.RuntimeException implements Serializable</h3> </li> <li class="blockList"><a name="org.apache.cassandra.transport.ServerError"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/transport/ServerError.html" title="class in org.apache.cassandra.transport">org.apache.cassandra.transport.ServerError</a> extends java.lang.RuntimeException implements Serializable</h3> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.transport.messages</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.transport.messages.ErrorMessage.WrappedException"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/transport/messages/ErrorMessage.WrappedException.html" title="class in org.apache.cassandra.transport.messages">org.apache.cassandra.transport.messages.ErrorMessage.WrappedException</a> extends java.lang.RuntimeException implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockListLast"> <h4>streamId</h4> <pre>int streamId</pre> </li> </ul> </li> </ul> </li> </ul> </li> <li class="blockList"> <h2 title="Package">Package&nbsp;org.apache.cassandra.utils</h2> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.utils.MerkleTree"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/utils/MerkleTree.html" title="class in org.apache.cassandra.utils">org.apache.cassandra.utils.MerkleTree</a> extends java.lang.Object implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>2L</dd> </dl> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>hashdepth</h4> <pre>byte hashdepth</pre> </li> <li class="blockList"> <h4>fullRange</h4> <pre><a href="org/apache/cassandra/dht/Range.html" title="class in org.apache.cassandra.dht">Range</a>&lt;<a href="org/apache/cassandra/dht/Range.html" title="type parameter in Range">T</a> extends <a href="org/apache/cassandra/dht/RingPosition.html" title="interface in org.apache.cassandra.dht">RingPosition</a>&lt;<a href="org/apache/cassandra/dht/Range.html" title="type parameter in Range">T</a>&gt;&gt; fullRange</pre> <div class="block">The top level range that this MerkleTree covers.</div> </li> <li class="blockList"> <h4>partitioner</h4> <pre><a href="org/apache/cassandra/dht/IPartitioner.html" title="interface in org.apache.cassandra.dht">IPartitioner</a> partitioner</pre> </li> <li class="blockList"> <h4>maxsize</h4> <pre>long maxsize</pre> </li> <li class="blockList"> <h4>size</h4> <pre>long size</pre> </li> <li class="blockListLast"> <h4>root</h4> <pre>org.apache.cassandra.utils.MerkleTree.Hashable root</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.utils.MerkleTree.TreeDifference"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/utils/MerkleTree.TreeDifference.html" title="class in org.apache.cassandra.utils">org.apache.cassandra.utils.MerkleTree.TreeDifference</a> extends <a href="org/apache/cassandra/utils/MerkleTree.TreeRange.html" title="class in org.apache.cassandra.utils">MerkleTree.TreeRange</a> implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>6363654174549968183L</dd> </dl> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>sizeOnLeft</h4> <pre>long sizeOnLeft</pre> </li> <li class="blockList"> <h4>sizeOnRight</h4> <pre>long sizeOnRight</pre> </li> <li class="blockList"> <h4>rowsOnLeft</h4> <pre>long rowsOnLeft</pre> </li> <li class="blockListLast"> <h4>rowsOnRight</h4> <pre>long rowsOnRight</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.utils.MerkleTree.TreeRange"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/utils/MerkleTree.TreeRange.html" title="class in org.apache.cassandra.utils">org.apache.cassandra.utils.MerkleTree.TreeRange</a> extends <a href="org/apache/cassandra/dht/Range.html" title="class in org.apache.cassandra.dht">Range</a>&lt;<a href="org/apache/cassandra/dht/Token.html" title="class in org.apache.cassandra.dht">Token</a>&gt; implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>1L</dd> </dl> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>tree</h4> <pre><a href="org/apache/cassandra/utils/MerkleTree.html" title="class in org.apache.cassandra.utils">MerkleTree</a> tree</pre> </li> <li class="blockList"> <h4>depth</h4> <pre>byte depth</pre> </li> <li class="blockListLast"> <h4>hashable</h4> <pre>org.apache.cassandra.utils.MerkleTree.Hashable hashable</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.utils.NoSpamLogger.NoSpamLogStatement"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/utils/NoSpamLogger.NoSpamLogStatement.html" title="class in org.apache.cassandra.utils">org.apache.cassandra.utils.NoSpamLogger.NoSpamLogStatement</a> extends java.util.concurrent.atomic.AtomicLong implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>1L</dd> </dl> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>statement</h4> <pre>java.lang.String statement</pre> </li> <li class="blockListLast"> <h4>minIntervalNanos</h4> <pre>long minIntervalNanos</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="org.apache.cassandra.utils.TopKSampler.SamplerResult"> <!-- --> </a> <h3>Class <a href="org/apache/cassandra/utils/TopKSampler.SamplerResult.html" title="class in org.apache.cassandra.utils">org.apache.cassandra.utils.TopKSampler.SamplerResult</a> extends java.lang.Object implements Serializable</h3> <ul class="blockList"> <li class="blockList"> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>topK</h4> <pre>java.util.List&lt;E&gt; topK</pre> </li> <li class="blockListLast"> <h4>cardinality</h4> <pre>long cardinality</pre> </li> </ul> </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>Package</li> <li>Class</li> <li>Use</li> <li><a href="overview-tree.html">Tree</a></li> <li><a href="deprecated-list.html">Deprecated</a></li> <li><a href="index-all.html">Index</a></li> <li><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?serialized-form.html" target="_top">Frames</a></li> <li><a href="serialized-form.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 &copy; 2015 The Apache Software Foundation</small></p> </body> </html>
mitch-kyle/message-board
support/apache-cassandra-2.2.1/javadoc/serialized-form.html
HTML
apache-2.0
268,018
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Units</title> <link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../boost_units.html" title="Chapter&#160;35.&#160;Boost.Units 1.1.0"> <link rel="prev" href="Dimensional_Analysis.html" title="Dimensional Analysis"> <link rel="next" href="Quantities.html" title="Quantities"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../boost.png"></td> <td align="center"><a href="../../../index.html">Home</a></td> <td align="center"><a href="../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="Dimensional_Analysis.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost_units.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="Quantities.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="boost_units.Units"></a><a class="link" href="Units.html" title="Units">Units</a> </h2></div></div></div> <div class="toc"><dl class="toc"> <dt><span class="section"><a href="Units.html#boost_units.Units.base_units">Base Units</a></span></dt> <dt><span class="section"><a href="Units.html#boost_units.Units.scaled_base_units">Scaled Base Units</a></span></dt> <dt><span class="section"><a href="Units.html#boost_units.Units.scaled_units">Scaled Units</a></span></dt> </dl></div> <p> We define a <span class="bold"><strong>unit</strong></span> as a set of base units each of which can be raised to an arbitrary rational exponent. Thus, the SI unit corresponding to the dimension of force is kg m s^-2, where kg, m, and s are base units. We use the notion of a <span class="bold"><strong>unit system</strong></span> such as SI to specify the mapping from a dimension to a particular unit so that instead of specifying the base units explicitly, we can just ask for the representation of a dimension in a particular system. </p> <p> Units are, like dimensions, purely compile-time variables with no associated value. Units obey the same algebra as dimensions do; the presence of the unit system serves to ensure that units having identical reduced dimension in different systems (like feet and meters) cannot be inadvertently mixed in computations. </p> <p> There are two distinct types of systems that can be envisioned: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <span class="bold"><strong>Homogeneous systems</strong></span> : Systems which hold a linearly independent set of base units which can be used to represent many different dimensions. For example, the SI system has seven base dimensions and seven base units corresponding to them. It can represent any unit which uses only those seven base dimensions. Thus it is a homogeneous_system. </li> <li class="listitem"> <span class="bold"><strong>Heterogeneous systems</strong></span> : Systems which store the exponents of every base unit involved are termed heterogeneous. Some units can only be represented in this way. For example, area in m ft is intrinsically heterogeneous, because the base units of meters and feet have identical dimensions. As a result, simply storing a dimension and a set of base units does not yield a unique solution. A practical example of the need for heterogeneous units, is an empirical equation used in aviation: H = (r/C)^2 where H is the radar beam height in feet and r is the radar range in nautical miles. In order to enforce dimensional correctness of this equation, the constant, C, must be expressed in nautical miles per foot^(1/2), mixing two distinct base units of length. </li> </ul></div> <p> Units are implemented by the <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/unit.html" title="Class template unit">unit</a></code></span> template class defined in <code class="computeroutput"><a class="link" href="Reference.html#header.boost.units.unit_hpp" title="Header &lt;boost/units/unit.hpp&gt;">boost/units/unit.hpp</a></code> : </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">class</span> <span class="identifier">Dim</span><span class="special">,</span><span class="keyword">class</span> <span class="identifier">System</span><span class="special">&gt;</span> <span class="keyword">class</span> <span class="identifier">unit</span><span class="special">;</span> </pre> <p> In addition to supporting the compile-time dimensional analysis operations, the +, -, *, and / runtime operators are provided for <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/unit.html" title="Class template unit">unit</a></code></span> variables. Because the dimension associated with powers and roots must be computed at compile-time, it is not possible to provide overloads for <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pow</span></code> that function correctly for <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/unit.html" title="Class template unit">unit</a></code></span>s. These operations are supported through free functions <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/pow_idp148539392.html" title="Function template pow">pow</a></code></span> and <span class="underline"><code class="computeroutput"><a class="link" href="Reference.html#boost.units.root_idp148944432">root</a></code></span> that are templated on integer and <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/static_rational.html" title="Class template static_rational">static_rational</a></code></span> values and can take as an argument any type for which the utility classes <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/power_typeof_helper.html" title="Struct template power_typeof_helper">power_typeof_helper</a></code></span> and <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/root_typeof_helper.html" title="Struct template root_typeof_helper">root_typeof_helper</a></code></span> have been defined. </p> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="boost_units.Units.base_units"></a><a class="link" href="Units.html#boost_units.Units.base_units" title="Base Units">Base Units</a> </h3></div></div></div> <p> Base units are defined much like base dimensions. </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">class</span> <span class="identifier">Derived</span><span class="special">,</span> <span class="keyword">class</span> <span class="identifier">Dimensions</span><span class="special">,</span> <span class="keyword">long</span> <span class="identifier">N</span><span class="special">&gt;</span> <span class="keyword">struct</span> <span class="identifier">base_unit</span> <span class="special">{</span> <span class="special">...</span> <span class="special">};</span> </pre> <p> Again negative ordinals are reserved. </p> <p> As an example, in the following we will implement a subset of the SI unit system based on the fundamental dimensions given above, demonstrating all steps necessary for a completely functional system. First, we simply define a unit system that includes type definitions for commonly used units: </p> <p> </p> <pre class="programlisting"><span class="keyword">struct</span> <span class="identifier">meter_base_unit</span> <span class="special">:</span> <span class="identifier">base_unit</span><span class="special">&lt;</span><span class="identifier">meter_base_unit</span><span class="special">,</span> <span class="identifier">length_dimension</span><span class="special">,</span> <span class="number">1</span><span class="special">&gt;</span> <span class="special">{</span> <span class="special">};</span> <span class="keyword">struct</span> <span class="identifier">kilogram_base_unit</span> <span class="special">:</span> <span class="identifier">base_unit</span><span class="special">&lt;</span><span class="identifier">kilogram_base_unit</span><span class="special">,</span> <span class="identifier">mass_dimension</span><span class="special">,</span> <span class="number">2</span><span class="special">&gt;</span> <span class="special">{</span> <span class="special">};</span> <span class="keyword">struct</span> <span class="identifier">second_base_unit</span> <span class="special">:</span> <span class="identifier">base_unit</span><span class="special">&lt;</span><span class="identifier">second_base_unit</span><span class="special">,</span> <span class="identifier">time_dimension</span><span class="special">,</span> <span class="number">3</span><span class="special">&gt;</span> <span class="special">{</span> <span class="special">};</span> <span class="keyword">typedef</span> <span class="identifier">make_system</span><span class="special">&lt;</span> <span class="identifier">meter_base_unit</span><span class="special">,</span> <span class="identifier">kilogram_base_unit</span><span class="special">,</span> <span class="identifier">second_base_unit</span><span class="special">&gt;::</span><span class="identifier">type</span> <span class="identifier">mks_system</span><span class="special">;</span> <span class="comment">/// unit typedefs</span> <span class="keyword">typedef</span> <span class="identifier">unit</span><span class="special">&lt;</span><span class="identifier">dimensionless_type</span><span class="special">,</span><span class="identifier">mks_system</span><span class="special">&gt;</span> <span class="identifier">dimensionless</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">unit</span><span class="special">&lt;</span><span class="identifier">length_dimension</span><span class="special">,</span><span class="identifier">mks_system</span><span class="special">&gt;</span> <span class="identifier">length</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">unit</span><span class="special">&lt;</span><span class="identifier">mass_dimension</span><span class="special">,</span><span class="identifier">mks_system</span><span class="special">&gt;</span> <span class="identifier">mass</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">unit</span><span class="special">&lt;</span><span class="identifier">time_dimension</span><span class="special">,</span><span class="identifier">mks_system</span><span class="special">&gt;</span> <span class="identifier">time</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">unit</span><span class="special">&lt;</span><span class="identifier">area_dimension</span><span class="special">,</span><span class="identifier">mks_system</span><span class="special">&gt;</span> <span class="identifier">area</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">unit</span><span class="special">&lt;</span><span class="identifier">energy_dimension</span><span class="special">,</span><span class="identifier">mks_system</span><span class="special">&gt;</span> <span class="identifier">energy</span><span class="special">;</span> </pre> <p> </p> <p> The macro <span class="underline"><code class="computeroutput"><a class="link" href="../BOOST_UNITS_STATIC_CONSTANT.html" title="Macro BOOST_UNITS_STATIC_CONSTANT">BOOST_UNITS_STATIC_CONSTANT</a></code></span> is provided in <code class="computeroutput"><a class="link" href="Reference.html#header.boost.units.static_constant_hpp" title="Header &lt;boost/units/static_constant.hpp&gt;">boost/units/static_constant.hpp</a></code> to facilitate ODR- and thread-safe constant definition in header files. We then define some constants for the supported units to simplify variable definitions: </p> <p> </p> <pre class="programlisting"><span class="comment">/// unit constants </span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">meter</span><span class="special">,</span><span class="identifier">length</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">meters</span><span class="special">,</span><span class="identifier">length</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">kilogram</span><span class="special">,</span><span class="identifier">mass</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">kilograms</span><span class="special">,</span><span class="identifier">mass</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">second</span><span class="special">,</span><span class="identifier">time</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">seconds</span><span class="special">,</span><span class="identifier">time</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">square_meter</span><span class="special">,</span><span class="identifier">area</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">square_meters</span><span class="special">,</span><span class="identifier">area</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">joule</span><span class="special">,</span><span class="identifier">energy</span><span class="special">);</span> <span class="identifier">BOOST_UNITS_STATIC_CONSTANT</span><span class="special">(</span><span class="identifier">joules</span><span class="special">,</span><span class="identifier">energy</span><span class="special">);</span> </pre> <p> </p> <p> If support for textual output of units is desired, we can also specialize the <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/base_unit_info.html" title="Struct template base_unit_info">base_unit_info</a></code></span> class for each fundamental dimension tag: </p> <p> </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;&gt;</span> <span class="keyword">struct</span> <span class="identifier">base_unit_info</span><span class="special">&lt;</span><span class="identifier">test</span><span class="special">::</span><span class="identifier">meter_base_unit</span><span class="special">&gt;</span> <span class="special">{</span> <span class="keyword">static</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="identifier">name</span><span class="special">()</span> <span class="special">{</span> <span class="keyword">return</span> <span class="string">"meter"</span><span class="special">;</span> <span class="special">}</span> <span class="keyword">static</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="identifier">symbol</span><span class="special">()</span> <span class="special">{</span> <span class="keyword">return</span> <span class="string">"m"</span><span class="special">;</span> <span class="special">}</span> <span class="special">};</span> </pre> <p> </p> <p> and similarly for <code class="computeroutput"><span class="identifier">kilogram_base_unit</span></code> and <code class="computeroutput"><span class="identifier">second_base_unit</span></code>. A future version of the library will provide a more flexible system allowing for internationalization through a facet/locale-type mechanism. The <code class="computeroutput"><span class="identifier">name</span><span class="special">()</span></code> and <code class="computeroutput"><span class="identifier">symbol</span><span class="special">()</span></code> methods of <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/base_unit_info.html" title="Struct template base_unit_info">base_unit_info</a></code></span> provide full and short names for the base unit. With these definitions, we have the rudimentary beginnings of our unit system, which can be used to determine reduced dimensions for arbitrary unit calculations. </p> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="boost_units.Units.scaled_base_units"></a><a class="link" href="Units.html#boost_units.Units.scaled_base_units" title="Scaled Base Units">Scaled Base Units</a> </h3></div></div></div> <p> Now, it is also possible to define a base unit as being a multiple of another base unit. For example, the way that <code class="computeroutput"><span class="identifier">kilogram_base_unit</span></code> is actually defined by the library is along the following lines </p> <pre class="programlisting"><span class="keyword">struct</span> <span class="identifier">gram_base_unit</span> <span class="special">:</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">units</span><span class="special">::</span><span class="identifier">base_unit</span><span class="special">&lt;</span><span class="identifier">gram_base_unit</span><span class="special">,</span> <span class="identifier">mass_dimension</span><span class="special">,</span> <span class="number">1</span><span class="special">&gt;</span> <span class="special">{};</span> <span class="keyword">typedef</span> <span class="identifier">scaled_base_unit</span><span class="special">&lt;</span><span class="identifier">gram_base_unit</span><span class="special">,</span> <span class="identifier">scale</span><span class="special">&lt;</span><span class="number">10</span><span class="special">,</span> <span class="identifier">static_rational</span><span class="special">&lt;</span><span class="number">3</span><span class="special">&gt;</span> <span class="special">&gt;</span> <span class="special">&gt;</span> <span class="identifier">kilogram_base_unit</span><span class="special">;</span> </pre> <p> This basically defines a kilogram as being 10^3 times a gram. </p> <p> There are several advantages to this approach. </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> It reflects the real meaning of these units better than treating them as independent units. </li> <li class="listitem"> If a conversion is defined between grams or kilograms and some other units, it will automatically work for both kilograms and grams, with only one specialization. </li> <li class="listitem"> Similarly, if the symbol for grams is defined as "g", then the symbol for kilograms will be "kg" without any extra effort. </li> </ul></div> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="boost_units.Units.scaled_units"></a><a class="link" href="Units.html#boost_units.Units.scaled_units" title="Scaled Units">Scaled Units</a> </h3></div></div></div> <p> We can also scale a <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/unit.html" title="Class template unit">unit</a></code></span> as a whole, rather than scaling the individual base units which comprise it. For this purpose, we use the metafunction <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/make_scaled_unit.html" title="Struct template make_scaled_unit">make_scaled_unit</a></code></span>. The main motivation for this feature is the metric prefixes defined in <code class="computeroutput"><a class="link" href="Reference.html#header.boost.units.systems.si.prefixes_hpp" title="Header &lt;boost/units/systems/si/prefixes.hpp&gt;">boost/units/systems/si/prefixes.hpp</a></code>. </p> <p> A simple example of its usage would be. </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">make_scaled_unit</span><span class="special">&lt;</span><span class="identifier">si</span><span class="special">::</span><span class="identifier">time</span><span class="special">,</span> <span class="identifier">scale</span><span class="special">&lt;</span><span class="number">10</span><span class="special">,</span> <span class="identifier">static_rational</span><span class="special">&lt;-</span><span class="number">9</span><span class="special">&gt;</span> <span class="special">&gt;</span> <span class="special">&gt;::</span><span class="identifier">type</span> <span class="identifier">nanosecond</span><span class="special">;</span> </pre> <p> nanosecond is a specialization of <span class="underline"><code class="computeroutput"><a class="link" href="../boost/units/unit.html" title="Class template unit">unit</a></code></span>, and can be used in a quantity normally. </p> <pre class="programlisting"><span class="identifier">quantity</span><span class="special">&lt;</span><span class="identifier">nanosecond</span><span class="special">&gt;</span> <span class="identifier">t</span><span class="special">(</span><span class="number">1.0</span> <span class="special">*</span> <span class="identifier">si</span><span class="special">::</span><span class="identifier">seconds</span><span class="special">);</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">t</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="comment">// prints 1e9 ns</span> </pre> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2008 Matthias Christian Schabel<br>Copyright &#169; 2007-2010 Steven Watanabe<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="Dimensional_Analysis.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost_units.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="Quantities.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
ryancoleman/autodock-vina
boost_1_54_0/doc/html/boost_units/Units.html
HTML
apache-2.0
25,059
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_13) on Wed Apr 02 19:28:43 CDT 2008 --> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> Uses of Class net.sf.antcontrib.cpptasks.borland.BorlandCfgParser (cpptasks 1.0b5 API) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Uses of Class net.sf.antcontrib.cpptasks.borland.BorlandCfgParser (cpptasks 1.0b5 API)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&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="../../../../../../net/sf/antcontrib/cpptasks/borland/BorlandCfgParser.html" title="class in net.sf.antcontrib.cpptasks.borland"><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?net/sf/antcontrib/cpptasks/borland//class-useBorlandCfgParser.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="BorlandCfgParser.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>net.sf.antcontrib.cpptasks.borland.BorlandCfgParser</B></H2> </CENTER> No usage of net.sf.antcontrib.cpptasks.borland.BorlandCfgParser <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="../../../../../../net/sf/antcontrib/cpptasks/borland/BorlandCfgParser.html" title="class in net.sf.antcontrib.cpptasks.borland"><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?net/sf/antcontrib/cpptasks/borland//class-useBorlandCfgParser.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="BorlandCfgParser.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 © 2001-2008 <a href="http://ant-contrib.sourceforge.net">Ant-Contrib Project</a>. All Rights Reserved. </BODY> </HTML>
1spatial/cpptasks-parallel
site/apidocs/net/sf/antcontrib/cpptasks/borland/class-use/BorlandCfgParser.html
HTML
apache-2.0
6,198
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> <title>Fitted R-MAXQ: Member List</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.4.7 --> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li id="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="dirs.html"><span>Directories</span></a></li> </ul></div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul></div> <h1>Effect Member List</h1>This is the complete list of members for <a class="el" href="classEffect.html">Effect</a>, including all inherited members.<p><table> <tr class="memlist"><td><a class="el" href="classEffect.html#9f0bf13207cb333ea73d7fa43e2c0ac4">apply</a>(const StateVectorRef &amp;s) const =0</td><td><a class="el" href="classEffect.html">Effect</a></td><td><code> [pure virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classEffect.html#54fb7f7db033c4225ac76627a68c9087">debug</a>(std::ostream &amp;out) const =0</td><td><a class="el" href="classEffect.html">Effect</a></td><td><code> [pure virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classEffect.html#c26c0a394247e14c9081f875522b5b66">~Effect</a>()</td><td><a class="el" href="classEffect.html">Effect</a></td><td><code> [virtual]</code></td></tr> </table><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 1 14:50:57 2010 for Fitted R-MAXQ by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> </body> </html>
chaostrigger/rl-library
projects/packages/fitted-R-MAXQ/html/classEffect-members.html
HTML
apache-2.0
2,057
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <title>JailerModel</title> <link href="styles.css" rel="stylesheet" type="text/css"> </head> <body> <h1 style="font-style: italic;"><small><a href="index.html">Table EMPLOYEE</a></small></h1> <table style="width: 100%; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="width: 1px;"> </td> <td> <table style="width: 100%; text-align: left;" border="1" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 100%;"> <table style="width: 100%; height: 30px; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"> </td> <td class="titlebar">Columns</td> </tr> </tbody> </table> <table style="width: 100%; text-align: left;" border="0" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;font-style: italic; color: rgb(120, 0, 0);" >&nbsp;&nbsp;EMPNO</td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;INTEGER<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" ><br> </td> <td style="vertical-align: top;width: 100%;" >&nbsp;&nbsp;&nbsp;&nbsp;<small>NOT&nbsp;NULL</small><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;NAME</td> <td style="vertical-align: top; width: 10px;" class="highlightedrow"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;VARCHAR<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" class="highlightedrow"><br> </td> <td style="vertical-align: top;width: 100%;" class="highlightedrow"><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;JOB</td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;VARCHAR<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" ><br> </td> <td style="vertical-align: top;width: 100%;" ><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;BOSS</td> <td style="vertical-align: top; width: 10px;" class="highlightedrow"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;INTEGER<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" class="highlightedrow"><br> </td> <td style="vertical-align: top;width: 100%;" class="highlightedrow"><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;HIREDATE</td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DATE<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" ><br> </td> <td style="vertical-align: top;width: 100%;" ><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;SALARY</td> <td style="vertical-align: top; width: 10px;" class="highlightedrow"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DECIMAL<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" class="highlightedrow"><br> </td> <td style="vertical-align: top;width: 100%;" class="highlightedrow"><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;COMM</td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DECIMAL<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" ><br> </td> <td style="vertical-align: top;width: 100%;" ><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;DEPTNO</td> <td style="vertical-align: top; width: 10px;" class="highlightedrow"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;INTEGER<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" class="highlightedrow"><br> </td> <td style="vertical-align: top;width: 100%;" class="highlightedrow"><br> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <br> <table style="width: 100%; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="width: 1px;"> </td> <td> <table style="width: 100%; text-align: left;" border="1" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 100%;"> <table style="width: 100%; height: 30px; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"> </td> <td class="titlebar">Associations</td> </tr> </tbody> </table> <table style="width: 100%; text-align: left;" border="0" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td colspan="4" rowspan="1" style="vertical-align: top; width: 1px;font-style: italic; color: rgb(120, 0, 0);">depends&nbsp;on</td> <td style="vertical-align: top;width: 100%"><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;<a href="DEPARTMENT.html">DEPARTMENT</a></td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;n:1<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" >&nbsp;on&nbsp;<br> </td> <td style="vertical-align: top;width: 100%;" ><a href="DEPARTMENT.html">DEPARTMENT</a>.DEPTNO=<a href="EMPLOYEE.html">EMPLOYEE</a>.DEPTNO<br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;EMPLOYEE</td> <td style="vertical-align: top; width: 10px;" class="highlightedrow"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow">&nbsp;&nbsp;n:1<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" class="highlightedrow">&nbsp;on&nbsp;<br> </td> <td style="vertical-align: top;width: 100%;" class="highlightedrow"><a href="EMPLOYEE.html">B</a>.EMPNO=<a href="EMPLOYEE.html">A</a>.BOSS<br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td colspan="4" rowspan="1" style="vertical-align: top; width: 1px;font-style: italic; color: rgb(120, 0, 0);"><small><small>&nbsp;<br></small></small>has&nbsp;dependent</td> <td style="vertical-align: top;width: 100%"><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;EMPLOYEE</td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;1:n<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" >&nbsp;on&nbsp;<br> </td> <td style="vertical-align: top;width: 100%;" ><a href="EMPLOYEE.html">A</a>.EMPNO=<a href="EMPLOYEE.html">B</a>.BOSS <span style="font-style: italic; color: rgb(120, 0, 0);">restricted by</span> (<a href="EMPLOYEE.html">A</a>.NAME='SCOTT')<br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td colspan="4" rowspan="1" style="vertical-align: top; width: 1px;font-style: italic; color: rgb(120, 0, 0);"><small><small>&nbsp;<br></small></small>is&nbsp;associated&nbsp;with</td> <td style="vertical-align: top;width: 100%"><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;<a href="SALARYGRADE.html">SALARYGRADE</a></td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;n:1<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" >&nbsp;on&nbsp;<br> </td> <td style="vertical-align: top;width: 100%;" ><a href="EMPLOYEE.html">EMPLOYEE</a>.SALARY BETWEEN <a href="SALARYGRADE.html">SALARYGRADE</a>.LOSAL AND <a href="SALARYGRADE.html">SALARYGRADE</a>.HISAL<br> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <br><table style="width: 100%; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="width: 1px;"> </td> <td> <table style="width: 100%; text-align: left;" border="1" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 100%;"> <table style="width: 100%; height: 30px; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"> </td> <td class="titlebar">Neighborhood</td> </tr> </tbody> </table> <table style="width: 100%; text-align: left;" border="0" cellpadding="1" cellspacing="0"> <tbody> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <br><table style="width: 100%; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="width: 1px;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </td> <td> <table style="width: 100%; text-align: left;" border="1" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 100%;"> <table style="width: 100%; height: 30px; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"> </td> <td class="titlebar"><a href="DEPARTMENT.html">DEPARTMENT</a></td> </tr> </tbody> </table> <table style="width: 100%; text-align: left;" border="0" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td colspan="4" rowspan="1" style="vertical-align: top; width: 1px;font-style: italic; color: rgb(120, 0, 0);">ignored</td> <td style="vertical-align: top;width: 100%"><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;EMPLOYEE</td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;1:n<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" >&nbsp;on&nbsp;<br> </td> <td style="vertical-align: top;width: 100%;" ><a href="DEPARTMENT.html">DEPARTMENT</a>.DEPTNO=<a href="EMPLOYEE.html">EMPLOYEE</a>.DEPTNO<br> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <br><table style="width: 100%; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="width: 1px;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </td> <td> <table style="width: 100%; text-align: left;" border="1" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 100%;"> <table style="width: 100%; height: 30px; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"> </td> <td class="titlebar"><a href="SALARYGRADE.html">SALARYGRADE</a></td> </tr> </tbody> </table> <table style="width: 100%; text-align: left;" border="0" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td colspan="4" rowspan="1" style="vertical-align: top; width: 1px;font-style: italic; color: rgb(120, 0, 0);">ignored</td> <td style="vertical-align: top;width: 100%"><br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;EMPLOYEE</td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" >&nbsp;&nbsp;1:n<br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" >&nbsp;on&nbsp;<br> </td> <td style="vertical-align: top;width: 100%;" ><a href="EMPLOYEE.html">EMPLOYEE</a>.SALARY BETWEEN <a href="SALARYGRADE.html">SALARYGRADE</a>.LOSAL AND <a href="SALARYGRADE.html">SALARYGRADE</a>.HISAL<br> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <br> <table style="width: 100%; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="width: 1px;"> </td> <td> <table style="width: 100%; text-align: left;" border="1" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 100%;"> <table style="width: 100%; height: 30px; text-align: left;" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"> </td> <td class="titlebar">Closure</td> </tr> </tbody> </table> <table style="width: 100%; text-align: left;" border="0" cellpadding="1" cellspacing="0"> <tbody> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;font-style: italic; color: rgb(120, 0, 0);" >&nbsp;&nbsp;distance&nbsp;0</td> <td style="vertical-align: top; width: 10px;" ><br> </td> <td style="vertical-align: top; width: 1px;" ><br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" >&nbsp;<br> </td> <td style="vertical-align: top;width: 100%;" >EMPLOYEE<br> </td> </tr> <tr> <td style="vertical-align: top; width: 1px;"><br> </td> <td style="vertical-align: top; width: 1px;font-style: italic; color: rgb(120, 0, 0);" class="highlightedrow">&nbsp;&nbsp;distance&nbsp;1</td> <td style="vertical-align: top; width: 10px;" class="highlightedrow"><br> </td> <td style="vertical-align: top; width: 1px;" class="highlightedrow"><br> </td> <td style="vertical-align: top; width: 1px;color: rgb(120, 0, 0);" class="highlightedrow">&nbsp;<br> </td> <td style="vertical-align: top;width: 100%;" class="highlightedrow"><a href="DEPARTMENT.html">DEPARTMENT</a>, <a href="SALARYGRADE.html">SALARYGRADE</a><br> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <br> </body> </html>
pellcorp/jailer
doc/htdocs/render/EMPLOYEE.html
HTML
apache-2.0
16,195
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template result&lt;This(Range)&gt;</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../rbegin.html#idp178058344" title="Description"> <link rel="prev" href="../rbegin.html" title="Struct rbegin"> <link rel="next" href="../rend.html" title="Struct rend"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../rbegin.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../rbegin.html#idp178058344"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../rend.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.proto.functional.rbegin.result_This(Ra_idp66620760"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template result&lt;This(Range)&gt;</span></h2> <p>boost::proto::functional::rbegin::result&lt;This(Range)&gt;</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../../proto/reference.html#header.boost.proto.functional.range.rbegin_hpp" title="Header &lt;boost/proto/functional/range/rbegin.hpp&gt;">boost/proto/functional/range/rbegin.hpp</a>&gt; </span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> This<span class="special">,</span> <span class="keyword">typename</span> Range<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="result_This_Ra_idp66620760.html" title="Struct template result&lt;This(Range)&gt;">result</a><span class="special">&lt;</span><span class="identifier">This</span><span class="special">(</span><span class="identifier">Range</span><span class="special">)</span><span class="special">&gt;</span> <span class="special">:</span> <span class="keyword"></span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">range_reverse_iterator</span><span class="special">&lt;</span> <span class="keyword">typename</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">remove_reference</span><span class="special">&lt;</span><span class="identifier">Range</span><span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span> <span class="special">&gt;</span> <span class="special">{</span> <span class="special">}</span><span class="special">;</span></pre></div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2008 Eric Niebler<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../rbegin.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../rbegin.html#idp178058344"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../rend.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
NixaSoftware/CVis
venv/bin/doc/html/boost/proto/functional/rbegin/result_This_Ra_idp66620760.html
HTML
apache-2.0
4,764
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html version="-//W3C//DTD XHTML 1.1//EN" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/1999/xhtml http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <meta name=viewport content="width=device-width, initial-scale=0.3333334"> <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4"/> <title>ImageMagick: MagickCore, C API for ImageMagick: Compute a Message Digest for an Image</title> <meta http-equiv="content-language" content="en-US"/> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <meta http-equiv="reply-to" content="[email protected]"/> <meta name="application-name" content="ImageMagick"/> <meta name="description" content="A collection of tools and libraries to read, write, and manipulate an image in any of the more popular image formats."/> <meta name="application-url" content="http://www.imagemagick.org"/> <meta name="generator" content="PHP"/> <meta name="keywords" content="magickcore, c, api, for, imagemagick:, compute, a, message, digest, for, an, image, convert, edit, compose, image, pixel"/> <meta name="rating" content="GENERAL"/> <meta name="robots" content="INDEX, FOLLOW"/> <meta name="generator" content="ImageMagick Studio LLC"/> <meta name="author" content="ImageMagick Studio LLC"/> <meta name="revisit-after" content="2 DAYS"/> <meta name="resource-type" content="document"/> <meta name="copyright" content="Copyright (c) 1999-2012 ImageMagick Studio LLC"/> <meta name="distribution" content="Global"/> <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1"/> <link rel="icon" href="../../images/wand.png"/> <link rel="shortcut icon" href="../../images/wand.ico" type="images/x-icon"/> <link rel="canonical" href="../../index.html" /> <link rel="meta" type="application/rdf+xml" title="ICI" href="http://imagemagick.org/ici.rdf"/> <!-- Add jQuery library --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script> <!-- Add mousewheel plugin (this is optional) --> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/lib/jquery.mousewheel-3.0.6.pack.js"></script> <!-- Add fancyBox --> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/jquery.fancybox.css?v=2.1.5" type="text/css" media="screen" /> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <!-- Optionally add helpers - button, thumbnail and/or media --> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-buttons.css?v=1.0.5" type="text/css" media="screen" /> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-buttons.js?v=1.0.5"></script> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-media.js?v=1.0.6"></script> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" type="text/css" media="screen" /> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-thumbs.js?v=1.0.7"></script> <script type="text/javascript"> $(document).ready(function() { $(".fancybox").fancybox(); }); </script> <!-- ImageMagick style --> <style type="text/css" media="all"> @import url("../../www/magick.css"); </style> </head> <body id="www-imagemagick-org"> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'offline-script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-40133312-1', 'imagemagick.org'); ga('send', 'pageview'); </script> <div class="titlebar"> <div style="margin: 17px auto; float: left;"> <script type="text/javascript"> <!-- google_ad_client = "pub-3129977114552745"; google_ad_slot = "5439289906"; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> <a href="../../discourse-server"> <img src="../../images/logo.jpg" alt="ImageMagick Logo" width="123" height="118" style="width: 123px; height: 118px; border: 0px; float: right;" /></a> <a href="../../index.html"> <img src="../../images/sprite.jpg" alt="ImageMagick Sprite" width="114" height="118" style="width: 114px; height: 118px; border: 0px; float: right;" /></a> </div> <div class="westbar"> <div class="menu"> <a title="About ImageMagick" href="../../index.html">About ImageMagick</a> </div> <div class="menu"> <a title="Binary Releases" href="../../www/binary-releases.html">Binary Releases</a> </div> <div class="sub"> <a title="Binary Release: Unix" href="../../www/binary-releases.html#unix">Unix</a> </div> <div class="sub"> <a title="Binary Release: MacOS X" href="../../www/binary-releases.html#macosx">Mac OS X</a> </div> <div class="sub"> <a title="Binary Release: iOS" href="../../www/binary-releases.html#iOS">iOS</a> </div> <div class="sub"> <a title="Binary Release: Windows" href="../../www/binary-releases.html#windows">Windows</a> </div> <div class="sep"></div> <div class="menu"> <a title="Command-line Tools" href="../../www/command-line-tools.html">Command-line Tools</a> </div> <div class="sub"> <a title="Command-line Tools: Processing" href="../../www/command-line-processing.html">Processing</a> </div> <div class="sub"> <a title="Command-line Tools: Options" href="../../www/command-line-options.html">Options</a> </div> <div class="sub"> <a title="Command-line Tools: Usage" href="http://www.imagemagick.org/Usage/">Usage</a> </div> <div class="menu"> <a title="Program Interfaces" href="../../www/api.html">Program Interfaces</a> </div> <div class="sub"> <a title="Program Interface: MagickWand" href="../../www/magick-wand.html">MagickWand</a> </div> <div class="sub"> <a title="Program Interface: MagickCore" href="../../www/magick-core.html">MagickCore</a> </div> <div class="sub"> <a title="Program Interface: PerlMagick" href="../../www/perl-magick.html">PerlMagick</a> </div> <div class="sub"> <a title="Program Interface: Magick++" href="../../www/magick++.html">Magick++</a> </div> <div class="sep"></div> <div class="menu"> <a title="Install from Source" href="../../www/install-source.html">Install from Source</a> </div> <div class="sub"> <a title="Install from Source: Unix" href="../../www/install-source.html#unix">Unix</a> </div> <div class="sub"> <a title="Install from Source: Windows" href="../../www/install-source.html#windows">Windows</a> </div> <div class="menu"> <a title="Resources" href="../../www/resources.html">Resources</a> </div> <div class="menu"> <a title="Architecture" href="../../www/architecture.html">Architecture</a> </div> <div class="menu"> <a title="Download" href="../../www/download.html">Download</a> </div> <div class="sep"></div> <div class="menu"> <a title="Search" href="http://www.imagemagick.org/script/search.php">Search</a> </div> <div class="sep"></div> <div class="menu"> <a title="Site Map" href="../../www/sitemap.html">Site Map</a> </div> <div class="sub"> <a title="Site Map: Links" href="../../www/links.html">Links</a> </div> <div class="sep"></div> <div class="menu"> <a title="Support ImageMagick Development" href="../../www/support.html">Support ImageMagick Development</a> </div> </div> <div class="eastbar"> <script type="text/javascript"> /* <![CDATA[ */ window.___gcfg = { lang: 'en-US' }; (function() { var po = document.createElement('offline-script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var script = document.getElementsByTagName('offline-script')[0]; script.parentNode.insertBefore(po, script); })(); var gplusone = document.getElementById("gplusone"); gplusone.setAttribute("data-size","medium"); gplusone.setAttribute("data-count","true"); /* ]]> */ </script> <script type="text/javascript"> /* <![CDATA[ */ (function() { var po = document.createElement('offline-script'), t = document.getElementsByTagName('offline-script')[0]; po.type = 'text/javascript'; po.async = true; po.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto'; var script = document.getElementsByTagName('offline-script')[0]; script.parentNode.insertBefore(po, script); })(); /* ]]> */ </script> <div> <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="../../index.html"></a></div> <noscript> <a href="http://flattr.com/thing/947300/Convert-Edit-And-Compose-Images" target="_blank"> <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" width="93" height="20" border="0" /></a> </noscript> <div class="g-plusone" data-size="standard" data-count="true"></div> </div> <div class="main"> <h1>Module signature Methods</h1> <p class="navigation-index">[<a href="signature.html#SignatureImage">SignatureImage</a>]</p> <h2><a href="http://www.imagemagick.org/api/MagickCore/signature_8c.html" id="SignatureImage">SignatureImage</a></h2> <div class="doc-section"> <p>SignatureImage() computes a message digest from an image pixel stream with an implementation of the NIST SHA-256 Message Digest algorithm. This signature uniquely identifies the image and is convenient for determining if an image has been modified or whether two images are identical.</p> <p>The format of the SignatureImage method is:</p> <pre class="code"> MagickBooleanType SignatureImage(Image *image) </pre> <p>A description of each parameter follows:</p> <h5>image</h5> <p>the image.</p> </div> </div> <div id="linkbar"> <span id="linkbar-west"> </span> <span id="linkbar-center"> <a href="../../discourse-server">Discourse Server</a> • <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> • <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> • <a href="http://jqmagick.imagemagick.org/">JqMagick</a> </span> <span id="linkbar-east"> </span> </div> <div class="footer"> <span id="footer-west">© 1999-2014 ImageMagick Studio LLC</span> <span id="footer-east"> <a href="../../www/contact.html">Contact the Wizards</a></span> </div> <div style="clear: both; margin: 0; width: 100%; "></div> </body> </html>
trice-imaging/imagemagick
www/api/signature.html
HTML
apache-2.0
11,233
<!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) on Mon Jan 13 19:53:38 EST 2014 --> <title>Uses of Class org.drip.analytics.daycount.DCAct_Act</title> <meta name="date" content="2014-01-13"> <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.drip.analytics.daycount.DCAct_Act"; } //--> </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/drip/analytics/daycount/DCAct_Act.html" title="class in org.drip.analytics.daycount">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/drip/analytics/daycount/\class-useDCAct_Act.html" target="_top">Frames</a></li> <li><a href="DCAct_Act.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.drip.analytics.daycount.DCAct_Act" class="title">Uses of Class<br>org.drip.analytics.daycount.DCAct_Act</h2> </div> <div class="classUseContainer">No usage of org.drip.analytics.daycount.DCAct_Act</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/drip/analytics/daycount/DCAct_Act.html" title="class in org.drip.analytics.daycount">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/drip/analytics/daycount/\class-useDCAct_Act.html" target="_top">Frames</a></li> <li><a href="DCAct_Act.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>
tectronics/splinelibrary
2.3/docs/Javadoc/org/drip/analytics/daycount/class-use/DCAct_Act.html
HTML
apache-2.0
4,264
<html> <body>Methods that has mutators-like name are expected to have <a href="http://en.wikipedia.org/wiki/Side_effect_(computer_science)">side effects</a>. The convention is that you include parentheses if the method has side effects. In accordance with <a href="http://en.wikipedia.org/wiki/Liskov_substitution_principle">Liskov substitution principle</a>, as overriden method has side effects, the overriding method must also be declared as a method with side effects. <br><br> <small>* Refer to Programming in Scala, 5.3 Operators are methods</small> </body> </html>
triplequote/intellij-scala
scala/scala-impl/resources/inspectionDescriptions/JavaMutatorMethodOverridenAsParameterless.html
HTML
apache-2.0
587
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" > <title>Belgium 2014 - Proposal</title> <meta name="author" content="Daniel Cukier" > <link rel="alternate" type="application/rss+xml" title="devopsdays RSS Feed" href="http://www.devopsdays.org/feed/" > <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript"> google.load('jquery', '1.3.2'); </script> <!---This is a combined jAmpersand, jqwindont , jPullquote --> <script type="text/javascript" src="/js/devops.js"></script> <!--- Blueprint CSS Framework Screen + Fancytype-Screen + jedi.css --> <link rel="stylesheet" href="/css/devops.min.css" type="text/css" media="screen, projection"> <link rel="stylesheet" href="/css/blueprint/print.css" type="text/css" media="print"> <!--[if IE]> <link rel="stylesheet" href="/css/blueprint/ie.css" type="text/css" media="screen, projection"> <![endif]--> </head> <body onload="initialize()"> <div class="container "> <div class="span-24 last" id="header"> <div class="span-16 first"> <img src="/images/devopsdays-banner.png" title="devopsdays banner" width="801" height="115" alt="devopdays banner" ><br> </div> <div class="span-8 last"> </div> </div> <div class="span-24 last"> <div class="span-15 first"> <div id="headermenu"> <table > <tr> <td> <a href="/"><img alt="home" title="home" src="/images/home.png"></a> <a href="/">Home</a> </td> <td> <a href="/contact/"><img alt="contact" title="contact" src="/images/contact.png"></a> <a href="/contact/">Contact</a> </td> <td> <a href="/events/"><img alt="events" title="events" src="/images/events.png"></a> <a href="/events/">Events</a> </td> <td> <a href="/presentations/"><img alt="presentations" title="presentations" src="/images/presentations.png"></a> <a href="/presentations/">Presentations</a> </td> <td> <a href="/blog/"><img alt="blog" title="blog" src="/images/blog.png"></a> <a href="/blog/">Blog</a> </td> </tr> </table> </div> </div> <div class="span-8 last"> </div> <div class="span-24 last" id="title"> <div class="span-15 first"> <h1>Belgium 2014 - Proposal </h1> </div> <div class="span-8 last"> </div> <h1>Gold sponsors</h1> </div> <div class="span-15 "> <div class="span-15 last "> <div class="submenu"> <h3> <a href="/events/2014-belgium/">welcome</a>&nbsp; <a href="/events/2014-belgium/propose">propose</a>&nbsp; <a href="/events/2014-belgium/program">program</a>&nbsp; <a href="/events/2014-belgium/location">location</a>&nbsp; <a href="/events/2014-belgium/registration">register</a>&nbsp; <a href="/events/2014-belgium/sponsor">sponsor</a>&nbsp; <a href="/events/2014-belgium/contact">contact</a>&nbsp; <a href="/events/2014-belgium/conduct">conduct</a>&nbsp; </h3> </div> Back to <a href='..'>proposals overview</a> - <a href='../../program'>program</a> <hr> <h3>Devops patterns using the Pattern Language</h3> <p>Christopher Alexander coined the term "PatternLanguage" to emphasize his belief that people had an innate ability for design that paralleled their ability to speak. He defines a 'pattern' as a three part construct. First comes the 'context'; under what conditions does this pattern hold. Next are a 'system of forces'. In many ways it is natural to think of this as the 'problem' or 'goal'. The third part is the 'solution'; a configuration that balances the system of forces or solves the problems presented.</p> <p>Patterns are being used be the Software community for a long time, with many published books like the famous Gang of Four "Design Patterns" Book, as well as Architecture Patterns, The POSA Series (Pattern-Oriented Software Architecture), Martin Fowler's Patterns of Enterprise Application Architecture, and many others.</p> <p>In this workshop, we propose an exercise engaging the DevOps Community to to design new patterns related to the DevOps context and catalog them. In the workshop, the attendee will leaasics of patterns languages. How to design a pattern, and also communicating the catalog, spreading good solutions to a wider audience. Examples of patterns can be found in the link bellow. The ideal outcome of this workshop would be drafts for new articles like this one. Here is the published article link:</p> <p><a href="http://www.agileandart.com/2013/08/25/devops-patterns-to-scale-web-applications-using-cloud-services/">http://www.agileandart.com/2013/08/25/devops-patterns-to-scale-web-applications-using-cloud-services/</a></p> </div> <div class="span-15 first last"> <script type="text/javascript"> // var disqus_developer = 1; </script> <div id="disqus_thread"></div> <script type="text/javascript"> var disqus_shortname = 'devopsdays'; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a> <hr> </div> </div> <div class="span-8 last"> <div class="span-8 last"> <a href='http://www.openminds.be/'><img border=0 alt='Openminds' title='Openminds' width=100px height=100px src='/events/2014-belgium/logos/openminds.png'></a> <a href='http://www.bmc.com/devops'><img border=0 alt='BMC' title='BMC' width=100px height=100px src='/events/2014-belgium/logos/bmc.png'></a> <a href='http://www.schubergphilis.com/'><img border=0 alt='Schuberg Philis' title='Schuberg Philis' width=100px height=100px src='/events/2014-belgium/logos/schubergphilis.png'></a> <a href='http://www.normation.com/'><img border=0 alt='Normation' title='Normation' width=100px height=100px src='/events/2014-belgium/logos/normation.png'></a> <a href='http://getchef.com/'><img border=0 alt='Getchef' title='Getchef' width=100px height=100px src='/events/2014-belgium/logos/chef.png'></a> <a href='http://puppetlabs.com/'><img border=0 alt='Puppetlabs' title='Puppetlabs' width=100px height=100px src='/events/2014-belgium/logos/puppetlabs.png'></a> <a href='http://serena.com/'><img border=0 alt='Serena' title='Serena' width=100px height=100px src='/events/2014-belgium/logos/serena.png'></a> <a href='http://www.elasticsearch.com/'><img border=0 alt='Elasticsearch' title='Elasticsearch' width=100px height=100px src='/events/2014-belgium/logos/elasticsearch.png'></a> <a href='http://www.xebialabs.com/'><img border=0 alt='Xebialabs' title='Xebialabs' width=100px height=100px src='/events/2014-belgium/logos/xebialabs.png'></a> <a href='http://www.sumologic.com/'><img border=0 alt='Sumologic' title='Sumologic' width=100px height=100px src='/events/2014-belgium/logos/sumologic.png'></a> <a href='http://www.ca.com/us/products/application-delivery.aspx?intcmp=headernav'><img border=0 alt='CA Technologies' title='CA Technologies' width=100px height=100px src='/events/2014-belgium/logos/ca.png'></a> <a href='http://www.kangaroot.net/'><img border=0 alt='Kangaroot' title='Kangaroot' width=100px height=100px src='/events/2014-belgium/logos/kangaroot.png'></a> <a href='http://www.appdynamics.com/'><img border=0 alt='AppDynamics' title='AppDynamics' width=100px height=100px src='/events/2014-belgium/logos/appdynamics.png'></a> <a href='http://www.rackspace.com/'><img border=0 alt='Rackspace' title='Rackspace' width=100px height=100px src='/events/2014-belgium/logos/rackspace.png'></a> <a href='http://www.microsoft.com/'><img border=0 alt='Microsoft' title='Microsoft' width=100px height=100px src='/events/2014-belgium/logos/microsoft.png'></a> <h1>Special sponsors</h1> <a href='http://www.getchef.com/'><img border=0 alt='Getchef' title='Getchef' width=100px height=100px src='/events/2014-belgium/logos/chef.png'></a> <a href='http://www.elasticsearch.com/'><img border=0 alt='Elasticsearch' title='Elasticsearch' width=100px height=100px src='/events/2014-belgium/logos/elasticsearch.png'></a> <a href='http://www.axelos.com/'><img border=0 alt='Axelos' title='Axelos' width=100px height=100px src='/events/2014-belgium/logos/axelos.png'></a> <h1>Pearl sponsors</h1> <a href='http://www.automic.com/'><img border=0 alt='Automic' title='Automic' width=100px height=100px src='/events/2014-belgium/logos/automic.png'></a> <a href='http://www.ibm.com/'><img border=0 alt='IBM' title='IBM' width=100px height=100px src='/events/2014-belgium/logos/ibm.png'></a> <h1>Silver sponsors</h1> <a href='http://www.inuits.be/'><img border=0 alt='Inuits' title='Inuits' width=100px height=100px src='/events/2014-belgium/logos/inuits.png'></a> <a href='http://www.nucleus.be/'><img border=0 alt='Nucleus' title='Nucleus' width=100px height=100px src='/events/2014-belgium/logos/nucleus.png'></a> <a href='http://www.super-visions.com/'><img border=0 alt='Super Visions' title='Super Visions' width=100px height=100px src='/events/2014-belgium/logos/super-visions.png'></a> <a href='http://agileinthecore.net/'><img border=0 alt='Cegeka' title='Cegeka' width=100px height=100px src='/events/2014-belgium/logos/cegeka.png'></a> <a href='http://www.thoughtworks.com/'><img border=0 alt='ThoughtWorks' title='ThoughtWorks' width=100px height=100px src='/events/2014-belgium/logos/thoughtworks.png'></a> <a href='http://www.oreilly.com/'><img border=0 alt='O-Reilly' title='O-Reilly' width=100px height=100px src='/events/2014-belgium/logos/oreilly.png'></a> <a href='http://cirb.brussels/'><img border=0 alt='CIRB-CIBG' title='CIRB-CIBG' width=100px height=100px src='/events/2014-belgium/logos/cirb-cigb.png'></a> <h1>Bronze sponsors</h1> <a href='http://www.combell.be/'><img border=0 alt='Combell' title='Combell' width=100px height=100px src='/events/2014-belgium/logos/combell.png'></a> <a href='http://skyscrape.rs/'><img border=0 alt='Skyscrapers' title='Skyscrapers' width=100px height=100px src='/events/2014-belgium/logos/skyscrapers.png'></a> <a href='http://datadoghq.com'><img border=0 alt='Datadog' title='Datadog' width=100px height=100px src='/events/2014-belgium/logos/datadog.png'></a> <a href='http://highops.com'><img border=0 alt='HighOps' title='HighOps' width=100px height=100px src='/events/2014-belgium/logos/highops.png'></a> <a href='http://scalefactory.com'><img border=0 alt='Scale Factory' title='Scale Factory' width=100px height=100px src='/events/2014-belgium/logos/scalefactory.png'></a> <a href='http://opsmatic.com'><img border=0 alt='Opsmatic' title='Opsmatic' width=100px height=100px src='/events/2014-belgium/logos/opsmatic.png'></a> <a href='http://www.imvalues.nl/'><img border=0 alt='imValues' title='imValues' width=100px height=100px src='/events/2014-belgium/logos/imvalues.png'></a> <a href='http://www.adroll.com/'><img border=0 alt='adRoll' title='adRoll' width=100px height=100px src='/events/2014-belgium/logos/adroll.png'></a> <a href='http://open.citrix.com/'><img border=0 alt='Open@Citrix' title='Open@Citrix' width=100px height=100px src='/events/2014-belgium/logos/citrix.png'></a> <a href='http://www.stattys.com/'><img border=0 alt='Stattys' title='Stattys' width=100px height=100px src='/events/2014-belgium/logos/stattys.png'></a> <h1>Media sponsors</h1> <a href='http://xpdays.net'><img border=0 alt='Xp Days' title='Xp Days' width=100px height=100px src='/events/2014-belgium/logos/xpdays.png'></a> <a href='http://atbru.be'><img border=0 alt='Agile Tour Brussels' title='Agile Tour Brussels' width=100px height=100px src='/events/2014-belgium/logos/agiletour.png'></a> </div> <div class="span-8 last"> </div> </div> </div> </div> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-9713393-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </body> </html>
benjohnson77/devopsdays-web
static/events/2014-belgium/proposals/Devops Patterns using the Pattern Language/index.html
HTML
apache-2.0
12,574
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Class template make_recursive_variant</title> <link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../variant/reference.html#header.boost.variant.recursive_variant_hpp" title="Header &lt;boost/variant/recursive_variant.hpp&gt;"> <link rel="prev" href="make_variant_over.html" title="Class template make_variant_over"> <link rel="next" href="make_recursiv_idp150385104.html" title="Class template make_recursive_variant_over"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../boost.png"></td> <td align="center"><a href="../../../index.html">Home</a></td> <td align="center"><a href="../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="make_variant_over.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../variant/reference.html#header.boost.variant.recursive_variant_hpp"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="make_recursiv_idp150385104.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.make_recursive_variant"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Class template make_recursive_variant</span></h2> <p>boost::make_recursive_variant &#8212; Simplifies declaration of recursive <code class="computeroutput">variant</code> types.</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../variant/reference.html#header.boost.variant.recursive_variant_hpp" title="Header &lt;boost/variant/recursive_variant.hpp&gt;">boost/variant/recursive_variant.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> T1<span class="special">,</span> <span class="keyword">typename</span> T2 <span class="special">=</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span><span class="special">,</span> <span class="special">...</span><span class="special">,</span> <span class="keyword">typename</span> TN <span class="special">=</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span><span class="special">&gt;</span> <span class="keyword">class</span> <a class="link" href="make_recursive_variant.html" title="Class template make_recursive_variant">make_recursive_variant</a> <span class="special">{</span> <span class="keyword">public</span><span class="special">:</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <a class="link" href="variant.html" title="Class template variant">boost::variant</a><span class="special">&lt;</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="special">&gt;</span> <a name="boost.make_recursive_variant.type"></a><span class="identifier">type</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp209879264"></a><h2>Description</h2> <p><code class="computeroutput">type</code> has behavior equivalent in every respect to some <code class="computeroutput">variant&lt; U1, U2, ..., UN &gt;</code>, where each type <code class="computeroutput">U<span class="emphasis"><em>i</em></span></code> is the result of the corresponding type <code class="computeroutput">T<span class="emphasis"><em>i</em></span></code> undergone a transformation function. The following pseudo-code specifies the behavior of this transformation (call it <code class="computeroutput">substitute</code>): </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem">If <code class="computeroutput">T<span class="emphasis"><em>i</em></span></code> is <code class="computeroutput">boost::recursive_variant_</code> then: <code class="computeroutput">variant&lt; U1, U2, ..., UN &gt;</code>;</li> <li class="listitem">Else if <code class="computeroutput">T<span class="emphasis"><em>i</em></span></code> is of the form <code class="computeroutput">X *</code> then: <code class="computeroutput">substitute(X) *</code>;</li> <li class="listitem">Else if <code class="computeroutput">T<span class="emphasis"><em>i</em></span></code> is of the form <code class="computeroutput">X &amp;</code> then: <code class="computeroutput">substitute(X) &amp;</code>;</li> <li class="listitem">Else if <code class="computeroutput">T<span class="emphasis"><em>i</em></span></code> is of the form <code class="computeroutput">R (*)( X1, X2, ..., XN )</code> then: <code class="computeroutput">substitute(R) (*)( substitute(X1), substitute(X2), ..., substitute(XN) )</code>;</li> <li class="listitem">Else if <code class="computeroutput">T<span class="emphasis"><em>i</em></span></code> is of the form <code class="computeroutput">F &lt; X1, X2, ..., XN &gt;</code> then: <code class="computeroutput">F&lt; substitute(X1), substitute(X2), ..., substitute(XN) &gt;</code>;</li> <li class="listitem">Else: <code class="computeroutput">T<span class="emphasis"><em>i</em></span></code>.</li> </ul></div> <p> </p> <p>Note that cv-qualifiers are preserved and that the actual process is generally a bit more complicated. However, the above does convey the essential idea as well as describe the extent of the substititions.</p> <p>Use of <code class="computeroutput">make_recursive_variant</code> is demonstrated in <a class="xref" href="../variant/tutorial.html#variant.tutorial.recursive.recursive-variant" title="Recursive types with make_recursive_variant">the section called &#8220;Recursive types with <code class="computeroutput">make_recursive_variant</code>&#8221;</a>.</p> <p><span class="bold"><strong>Portability</strong></span>: Due to standard conformance issues in several compilers, <code class="computeroutput">make_recursive_variant</code> is not universally supported. On these compilers the library indicates its lack of support via the definition of the preprocessor symbol <code class="computeroutput"><a class="link" href="../BOOST_VARIANT_NO_FULL_RECURSIVE_VARIANT_SUPPORT.html" title="Macro BOOST_VARIANT_NO_FULL_RECURSIVE_VARIANT_SUPPORT">BOOST_VARIANT_NO_FULL_RECURSIVE_VARIANT_SUPPORT</a></code>.</p> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2002, 2003 Eric Friedman, Itay Maman<p>Distributed under the Boost Software License, Version 1.0. (See accompanying file <code class="filename">LICENSE_1_0.txt</code> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="make_variant_over.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../variant/reference.html#header.boost.variant.recursive_variant_hpp"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="make_recursiv_idp150385104.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
ryancoleman/autodock-vina
boost_1_54_0/doc/html/boost/make_recursive_variant.html
HTML
apache-2.0
8,611
<%! from vilya.models.user import User %> <%inherit file="/base.html" /> <h2>${q} - Search Results</h2> <br> %if results: <table class="table"> <tbody> % for project in results: <% owner = project.owner avatar_url = User(project.owner_id).avatar_url %> <tr> <td class="avatar"><a title="${owner.name}" href="/people/${owner.name}"><img src="${avatar_url}"/></a></td> <td class="title"> <h4><a href='${project.url}'>${project.name}</a></h4> <br/> <span class='repo_path'>${project.summary}</span> </td> <td class="owner"><a href="/people/${owner.name}">${owner.name}</a></td> <td class="product">${project.product}</td> </tr> % endfor </tbody> </table> %else: <div class="info">No matching results.</div> %endif
douban/code
vilya/templates/search.html
HTML
bsd-3-clause
808
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="da-DK" xml:lang="da-DK"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>LightZone: ZoneFinder</title><!--[if lt IE 7]> <script defer type="text/javascript" src="IE_PNG.js"></script> <link rel="stylesheet" type="text/css" href="IE.css" media="all"/> <![endif]--> <meta name="description" content="Description of the ZoneFinder."/> <link rel="stylesheet" type="text/css" href="Help.css" media="all"/> <link rel="stylesheet" type="text/css" href="Platform.css" media="all"/> </head> <body> <div id="banner"> <div id="banner_left"> <a href="index.html">LightZone Hjælp</a> </div> <div id="banner_right"> <a href="index/index.html">Indholdsfortegnelse</a> </div> </div><!-- LC_Index: ZoneFinder > description --> <a name="ZoneFinder"></a> <img src="images/app_icon-32.png" width="32" height="32" class="title_icon"/> <h1>ZoneFinder</h1> <a href="Color_Selection_Viewer.html" id="next">1 of 4</a> <p> <img src="images/ZoneFinder.png" width="200" height="264" class="inline_right"/> By default when editing a photo, in the upper-right corner of the LightZone window is the ZoneFinder that shows a miniature version of your photo that has been segmented into 16 grayscale zones each differing by 50% brightness or half an <em>exposure value</em> (or half an f-stop) from the next. </p> <p> The ZoneFinder allows you to see where the highlights, midtones, and shadows in your photo are in order to make adjustments using the <a href="Tool-ZoneMapper.html">ZoneMapper</a> tool. </p> <p> The ZoneFinder is based on the <a href="Zone_System.html">Zone System</a>. </p> <div> <h3>Se også:</h3> <ul> <li> <a href="Tool-ZoneMapper-ZoneFinder.html">Finde zoner i dit billede</a> </li> <li> <a href="Color_Selection_Viewer.html">Farve udvælgeses vinduet</a> </li> <li> <a href="Histogram.html">Histogram</a> </li> <li> <a href="Sampler.html">Sampler</a> </li> </ul> </div> </body> </html><!-- vim:set et sw=2 ts=2: -->
MarinnaCole/LightZone
lightcrafts/help/Danish/ZoneFinder.html
HTML
bsd-3-clause
2,524
<%inherit file="/base.html" /> <%namespace name="utils" file="/settings/utils.html" /> <%def name="head_style()"> <link rel="stylesheet" type="text/css" href="/static/css/lib/bootstrap.min.css" /> <link rel="stylesheet" type="text/css" href="/static/css/lib/flat-ui.css" /> <link rel="stylesheet" type="text/css" href="/static/css/lib/code.css" /> <link rel="stylesheet" type="text/css" href="${static('/css/app/my-settings.css')}" /> </%def> <%def name="title()">SSH Keys</%def> % for error in errors: <div class="alert alert-error"> ${error} </div> % endfor ${utils.personal_settings_submenu("ssh")} <div class="raw"> <div class="span12"> <div class="settings-content"> <div class="mod"> <ul id="settings-github" class="boxed-group-list standalone"> % for key in sshkeys: <li class="clearfix settings-github"> <a>${'%s (%s)' % (key.title, key.finger)}</a> <span class="github-actions"> <a href="/settings/ssh/${key.id}" class="btn btn-danger btn-small settings-remove-github" data-method="delete">Delete</a> </span> </li> % endfor </ul> <form action="." class="new_user_ssh" id="new_user_ssh" method="post"> <dl class="form new-ssh-form"> <dt><p class="help-block">Add another SSH key</p></dt> <dd> <textarea class="span6" id="ssh" name="ssh" rows="9">${key_lines}</textarea> <p class="help-block">请贴入 ~/.ssh/id_rsa.pub 或 ~/.ssh/id_dsa.pub 的内容。</p> <button type="submit" class="btn btn-primary">Add</button> </dd> </dl> </form> </div> </div> </div> </div>
douban/code
vilya/templates/settings/ssh.html
HTML
bsd-3-clause
1,861
<!doctype html> <script src = "/resources/testharness.js"></script> <script src = "/resources/testharnessreport.js"></script> <script src = "/resources/testharness-helpers.js"></script> <script src = "../resources/fetch-test-helpers.js"></script> <script src = "../script-tests/response.js"></script>
modulexcite/blink
LayoutTests/http/tests/fetch/window/response.html
HTML
bsd-3-clause
301
--- layout: data_model title: TransportLayerType this_version: 1.0 --- <div class="alert alert-danger bs-alert-old-docs"> <strong>Heads up!</strong> These docs are for STIX 1.0, which is not the latest version (1.2). <a href="/data-model/1.2/PacketObj/TransportLayerType">View the latest!</a> </div> <div class="row"> <div class="col-md-10"> <h1>TransportLayerType<span class="subdued">Network Packet Object Schema</span></h1> <p class="data-model-description">only UDP and TCP defined to begin. Other protocols will be defined as necessary.</p> </div> <div id="nav-area" class="col-md-2"> <p> <form id="nav-version"> <select> <option value="1.2" >STIX 1.2</option> <option value="1.1.1" >STIX 1.1.1</option> <option value="1.1" >STIX 1.1</option> <option value="1.0.1" >STIX 1.0.1</option> <option value="1.0" selected="selected">STIX 1.0</option> </select> </form> </p> </div> </div> <hr /> <h2>Fields</h2> <table class="table table-striped table-hover"> <thead> <tr> <th>Field Name</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td>TCP<span class="occurrence">0..1</span></td> <td> <a href="/data-model/1.0/PacketObj/TCPType">TCPType</a> </td> <td> <p>TCP provides reliable, ordered delivery of a stream of bytes from a prograom on one computer to another program on another computer. http://en.wikipedia.org/wiki/Transmission_Control_Protocol</p> </td> </tr> <tr> <td>UDP<span class="occurrence">0..1</span></td> <td> <a href="/data-model/1.0/PacketObj/UDPType">UDPType</a> </td> <td> <p>UDP uses a simple transmission model without implicit handshaking dialogues for providing reliability, ordering, or data integrity. Thus, UDP provides an unreliable service and datagrams may arrive out of order, appear duplicated, or go missing without notice. http://en.wikipedia.org/wiki/User_Datagram_Protocol</p> </td> </tr> </tbody> </table>
jburns12/stixproject.github.io
data-model/1.0/PacketObj/TransportLayerType/index.html
HTML
bsd-3-clause
2,288
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <!-- /* ** Copyright (c) 2012 The Khronos Group Inc. ** ** Permission is hereby granted, free of charge, to any person obtaining a ** copy of this software and/or associated documentation files (the ** "Materials"), to deal in the Materials without restriction, including ** without limitation the rights to use, copy, modify, merge, publish, ** distribute, sublicense, and/or sell copies of the Materials, and to ** permit persons to whom the Materials are furnished to do so, subject to ** the following conditions: ** ** The above copyright notice and this permission notice shall be included ** in all copies or substantial portions of the Materials. ** ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. */ --> <link rel="stylesheet" type="text/css" href="../unit.css" /> <script type="application/x-javascript" src="../unit.js"></script> <script type="application/x-javascript" src="../util.js"></script> <script type="application/x-javascript"> var verts = [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0]; var normals = [0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0]; var texcoords = [0.0,0.0, 1.0,0.0, 0.0,1.0]; Tests.startUnit = function () { var canvas = document.getElementById('gl'); var gl = wrapGLContext(canvas.getContext(GL_CONTEXT_ID)); var prog = new Shader(gl, 'vert', 'frag'); prog.use(); var sh = prog.shader.program; // log(gl.getShaderInfoLog(prog.shaders[1])); var v = gl.getAttribLocation(sh, 'Vertex'); var n = gl.getAttribLocation(sh, 'Normal'); var t = gl.getAttribLocation(sh, 'Tex'); return [gl,prog,v,n,t]; } Tests.setup = function(gl, prog, v,n,t) { assert(0 == gl.getError()); return [gl, prog, v,n,t]; } Tests.teardown = function(gl, prog, v,n,t) { gl.disableVertexAttribArray(v); gl.disableVertexAttribArray(n); gl.disableVertexAttribArray(t); } Tests.endUnit = function(gl, prog, v,n,t) { prog.destroy(); } Tests.testVertexAttrib = function(gl, prog, v,n,t) { var vbo = gl.createBuffer(); var vertsArr = new Float32Array(verts); gl.bindBuffer(gl.ARRAY_BUFFER, vbo); gl.bufferData(gl.ARRAY_BUFFER, vertsArr, gl.STATIC_DRAW); gl.enableVertexAttribArray(v); gl.vertexAttribPointer(v, 3, gl.FLOAT, false, 0, 0); assertFail("bad index", function(){gl.vertexAttrib1f(-1, 1);}); assertFail("bad index (big negative)", function(){gl.vertexAttrib1f(-69092342, 1);}); assertFail("bad index (big positive)", function(){gl.vertexAttrib1f(58928938, 1);}); assertOk("array too large", function(){gl.vertexAttrib1fv(v, [1,2,3,4,5]);}); assertFail("array too small", function(){gl.vertexAttrib1fv(v, []);}); assertOk("draw", function(){gl.drawArrays(gl.TRIANGLES, 0, 3);}); throwError(gl); } </script> <script id="vert" type="x-shader/x-vertex"> attribute vec3 Vertex; attribute vec3 Normal; attribute vec2 Tex; varying vec4 texCoord0; void main() { gl_Position = vec4(Vertex * Normal, 1.0); texCoord0 = vec4(Tex,0.0,0.0) + gl_Position; } </script> <script id="frag" type="x-shader/x-fragment"> precision mediump float; varying vec4 texCoord0; void main() { vec4 c = texCoord0; gl_FragColor = c; } </script> <style>canvas{ position:absolute; }</style> </head><body> <canvas id="gl" width="1" height="1"></canvas> </body></html>
leighpauls/k2cro4
third_party/webgl_conformance/conformance/more/functions/vertexAttribBadArgs.html
HTML
bsd-3-clause
3,792
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>NuGetSearchResponse - FAKE - F# Make</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull"> <script src="https://code.jquery.com/jquery-1.8.0.js"></script> <script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script> <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" /> <script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="masthead"> <ul class="nav nav-pills pull-right"> <li><a href="http://fsharp.org">fsharp.org</a></li> <li><a href="http://github.com/fsharp/fake">github page</a></li> </ul> <h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3> </div> <hr /> <div class="row"> <div class="span9" id="main"> <h1>NuGetSearchResponse</h1> <div class="xmldoc"> </div> <h3>Record Fields</h3> <table class="table table-bordered member-list"> <thead> <tr><td>Record Field</td><td>Description</td></tr> </thead> <tbody> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '1802', 1802)" onmouseover="showTip(event, '1802', 1802)"> d </code> <div class="tip" id="1802"> <strong>Signature:</strong> NuGetSearchResult<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/NuGet/NugetVersion.fs#L14-14" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> </td> </tr> </tbody> </table> </div> <div class="span3"> <a href="http://fsharp.github.io/FAKE/index.html"> <img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" /> </a> <ul class="nav nav-list" id="menu"> <li class="nav-header">FAKE - F# Make</li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li> <li class="divider"></li> <li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li> <li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li> <li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (Apache 2)</a></li> <li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li> <li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li> <li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li> <li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li> <li class="nav-header">Tutorials</li> <li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li> <li><a href="http://fsharp.github.io/FAKE/cache.html">Build script caching</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li> <li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li> <li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li> <li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li> <li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li> <li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li> <li><a href="http://fsharp.github.io/FAKE/parallel-build.html">Running targets in parallel</a></li> <li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li> <li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li> <li><a href="http://fsharp.github.io/FAKE/soft-dependencies.html">Soft dependencies</a></li> <li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li> <li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li> <li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li> <li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li> <li><a href="http://fsharp.github.io/FAKE/azurewebjobs.html">Azure WebJobs support</a></li> <li><a href="http://fsharp.github.io/FAKE/azurecloudservices.html">Azure Cloud Services support</a></li> <li><a href="http://fsharp.github.io/FAKE/fluentmigrator.html">FluentMigrator support</a></li> <li><a href="http://fsharp.github.io/FAKE/androidpublisher.html">Android publisher</a></li> <li><a href="http://fsharp.github.io/FAKE/watch.html">File Watcher</a></li> <li><a href="http://fsharp.github.io/FAKE/wix.html">WiX Setup Generation</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li> <li><a href="http://fsharp.github.io/FAKE/iis.html">Fake.IIS</a></li> <li class="nav-header">Reference</li> <li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li> </ul> </div> </div> </div> <a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a> </body> </html>
dcastro/AutoFixture
Packages/FAKE.4.19.0/docs/apidocs/fake-nugetversion-nugetsearchresponse.html
HTML
mit
6,832
<!DOCTYPE html> <!-- 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. --> <!-- Copyright 2008 Google Inc. All Rights Reserved. --> <html> <head> <title>Closure Unit Tests - goog.demos.editor.HelloWorldDialogPlugin</title> <script src="../../base.js"></script> <script src="deps.js"></script> <script> goog.require('goog.demos.editor.HelloWorldDialog'); goog.require('goog.demos.editor.HelloWorldDialog.OkEvent'); goog.require('goog.demos.editor.HelloWorldDialogPlugin'); goog.require('goog.demos.editor.HelloWorldDialogPlugin.Command'); goog.require('goog.dom'); goog.require('goog.dom.NodeType'); goog.require('goog.testing.ExpectedFailures'); goog.require('goog.testing.MockControl'); goog.require('goog.testing.MockRange'); goog.require('goog.testing.PropertyReplacer'); goog.require('goog.testing.editor.FieldMock'); goog.require('goog.testing.editor.TestHelper'); goog.require('goog.testing.editor.dom'); goog.require('goog.testing.events'); goog.require('goog.testing.jsunit'); goog.require('goog.testing.mockmatchers.ArgumentMatcher'); goog.require('goog.userAgent'); </script> <link rel="stylesheet" href="../css/dialog.css"/> </head> <body> <div id="myField"></div> <script> var plugin; var mockCtrl; var mockField; var mockRange; var mockPlaceCursorNextTo; var stubs = new goog.testing.PropertyReplacer(); var fieldObj; var CUSTOM_MESSAGE = 'Hello, cruel world...'; var expectedFailures = new goog.testing.ExpectedFailures(); function setUp() { mockCtrl = new goog.testing.MockControl(); mockRange = new goog.testing.MockRange(); mockCtrl.addMock(mockRange); mockField = new goog.testing.editor.FieldMock(undefined, undefined, mockRange); mockCtrl.addMock(mockField); mockPlaceCursorNextTo = mockCtrl.createFunctionMock('placeCursorNextTo'); } function tearDown() { plugin.dispose(); tearDownRealEditableField(); expectedFailures.handleTearDown(); stubs.reset(); goog.dom.$('myField').innerHTML = ''; } /** * Tests that the plugin's dialog is properly created. */ function testCreateDialog() { mockField.$replay(); plugin = new goog.demos.editor.HelloWorldDialogPlugin(); plugin.registerFieldObject(mockField); var dialog = plugin.createDialog(goog.dom.getDomHelper()); assertTrue('Dialog should be of type goog.demos.editor.HelloWorldDialog', dialog instanceof goog.demos.editor.HelloWorldDialog); mockField.$verify(); } /** * Tests that when the OK event fires the editable field is properly updated. */ function testOk() { mockField.focus(); mockField.dispatchBeforeChange(); mockRange.removeContents(); // Tests that an argument is a span with the custom message. var createdNodeMatcher = new goog.testing.mockmatchers.ArgumentMatcher( function(arg) { return arg.nodeType == goog.dom.NodeType.ELEMENT && arg.tagName == goog.dom.TagName.SPAN && goog.dom.getRawTextContent(arg) == CUSTOM_MESSAGE; }); mockRange.insertNode(createdNodeMatcher, false); mockRange.$does(function(node, before) { return node; }); mockPlaceCursorNextTo(createdNodeMatcher, false); stubs.set(goog.editor.range, 'placeCursorNextTo', mockPlaceCursorNextTo); mockField.dispatchSelectionChangeEvent(); mockField.dispatchChange(); mockCtrl.$replayAll(); plugin = new goog.demos.editor.HelloWorldDialogPlugin(); plugin.registerFieldObject(mockField); var dialog = plugin.createDialog(goog.dom.getDomHelper()); // Mock of execCommand + clicking OK without actually opening the dialog. dialog.dispatchEvent( new goog.demos.editor.HelloWorldDialog.OkEvent(CUSTOM_MESSAGE)); mockCtrl.$verifyAll(); } /** * Setup a real editable field (instead of a mock) and register the plugin to * it. */ function setUpRealEditableField() { fieldObj = new goog.editor.Field('myField', document); fieldObj.makeEditable(); // Register the plugin to that field. plugin = new goog.demos.editor.HelloWorldDialogPlugin(); fieldObj.registerPlugin(plugin); } /** * Tear down the real editable field. */ function tearDownRealEditableField() { if (fieldObj) { fieldObj.makeUneditable(); fieldObj.dispose(); } } /** * Tests that the selection is cleared when the dialog opens and is * correctly restored after ok is clicked. */ function testRestoreSelectionOnOk() { setUpRealEditableField(); fieldObj.setHtml(false, '12345'); var elem = fieldObj.getElement(); var helper = new goog.testing.editor.TestHelper(elem); helper.select('12345', 1, '12345', 4); // Selects '234'. assertEquals('Incorrect text selected before dialog is opened', '234', fieldObj.getRange().getText()); plugin.execCommand( goog.demos.editor.HelloWorldDialogPlugin.Command.HELLO_WORLD_DIALOG); // TODO: IE returns some bogus range when field doesn't have // selection. Remove the expectedFailure when robbyw fixes the issue. // NOTE: You can't remove the selection from a field in Opera without // blurring it. elem.parentNode.blur(); expectedFailures.expectFailureFor(goog.userAgent.IE || goog.userAgent.OPERA); try { assertNull('There should be no selection while dialog is open', fieldObj.getRange()); } catch (e) { expectedFailures.handleException(e); } goog.testing.events.fireClickSequence( plugin.dialog_.getOkButtonElement()); assertEquals('No text should be selected after clicking ok', '', fieldObj.getRange().getText()); // Test that the caret is placed after the custom message. goog.testing.editor.dom.assertRangeBetweenText( 'Hello, world!', '5', fieldObj.getRange()); } </script> </body> </html>
yesudeep/puppy
tools/google-closure-library/closure/goog/demos/editor/helloworlddialogplugin_test.html
HTML
mit
6,490
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>ProcessTestRunnerParams - FAKE - F# Make</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull"> <script src="https://code.jquery.com/jquery-1.8.0.js"></script> <script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script> <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" /> <script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="masthead"> <ul class="nav nav-pills pull-right"> <li><a href="http://fsharp.org">fsharp.org</a></li> <li><a href="http://github.com/fsharp/fake">github page</a></li> </ul> <h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3> </div> <hr /> <div class="row"> <div class="span9" id="main"> <h1>ProcessTestRunnerParams</h1> <div class="xmldoc"> <p>The ProcessTestRunner parameter type.</p> </div> <h3>Record Fields</h3> <table class="table table-bordered member-list"> <thead> <tr><td>Record Field</td><td>Description</td></tr> </thead> <tbody> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '1741', 1741)" onmouseover="showTip(event, '1741', 1741)"> ErrorLevel </code> <div class="tip" id="1741"> <strong>Signature:</strong> TestRunnerErrorLevel<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/UnitTest/ProcessTestRunner.fs#L15-15" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Option which allows to specify if a test runner error should break the build.</p> </td> </tr> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '1742', 1742)" onmouseover="showTip(event, '1742', 1742)"> TimeOut </code> <div class="tip" id="1742"> <strong>Signature:</strong> TimeSpan<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/UnitTest/ProcessTestRunner.fs#L13-13" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>If the timeout is reached the xUnit task will be killed. Default is 5 minutes.</p> </td> </tr> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '1743', 1743)" onmouseover="showTip(event, '1743', 1743)"> WorkingDir </code> <div class="tip" id="1743"> <strong>Signature:</strong> string<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/UnitTest/ProcessTestRunner.fs#L11-11" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>The working directory (optional).</p> </td> </tr> </tbody> </table> </div> <div class="span3"> <a href="http://fsharp.github.io/FAKE/index.html"> <img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" /> </a> <ul class="nav nav-list" id="menu"> <li class="nav-header">FAKE - F# Make</li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li> <li class="divider"></li> <li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li> <li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li> <li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (Apache 2)</a></li> <li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li> <li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li> <li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li> <li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li> <li class="nav-header">Tutorials</li> <li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li> <li><a href="http://fsharp.github.io/FAKE/cache.html">Build script caching</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li> <li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li> <li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li> <li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li> <li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li> <li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li> <li><a href="http://fsharp.github.io/FAKE/parallel-build.html">Running targets in parallel</a></li> <li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li> <li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li> <li><a href="http://fsharp.github.io/FAKE/soft-dependencies.html">Soft dependencies</a></li> <li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li> <li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li> <li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li> <li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li> <li><a href="http://fsharp.github.io/FAKE/azurewebjobs.html">Azure WebJobs support</a></li> <li><a href="http://fsharp.github.io/FAKE/azurecloudservices.html">Azure Cloud Services support</a></li> <li><a href="http://fsharp.github.io/FAKE/fluentmigrator.html">FluentMigrator support</a></li> <li><a href="http://fsharp.github.io/FAKE/androidpublisher.html">Android publisher</a></li> <li><a href="http://fsharp.github.io/FAKE/watch.html">File Watcher</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li> <li><a href="http://fsharp.github.io/FAKE/iis.html">Fake.IIS</a></li> <li class="nav-header">Reference</li> <li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li> </ul> </div> </div> </div> <a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a> </body> </html>
albertodall/Numsense
packages/FAKE.4.11.3/docs/apidocs/fake-processtestrunner-processtestrunnerparams.html
HTML
mit
8,400
<!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 Tue May 28 14:16:24 BST 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Interface org.neo4j.helpers.Factory (Neo4j Community 2.0.0-M03 API)</title> <meta name="date" content="2013-05-28"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.neo4j.helpers.Factory (Neo4j Community 2.0.0-M03 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/neo4j/helpers/Factory.html" title="interface in org.neo4j.helpers">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em>Neo4j Community</em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/neo4j/helpers/class-use/Factory.html" target="_top">Frames</a></li> <li><a href="Factory.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.neo4j.helpers.Factory" class="title">Uses of Interface<br>org.neo4j.helpers.Factory</h2> </div> <div class="classUseContainer">No usage of org.neo4j.helpers.Factory</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/neo4j/helpers/Factory.html" title="interface in org.neo4j.helpers">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em>Neo4j Community</em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/neo4j/helpers/class-use/Factory.html" target="_top">Frames</a></li> <li><a href="Factory.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; 2002-2013 <a href="http://neo4j.org/">The Neo4j Graph Database Project</a>. All Rights Reserved.</small></p> </body> </html>
LeArNalytics/LeArNalytics
neo4j/neo4j-community-2.0.0-M03/doc/java/api/org/neo4j/helpers/class-use/Factory.html
HTML
mit
4,402
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Macro BOOST_LOG_STANDARD_INTEGRAL_TYPES</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="index.html" title="Chapter&#160;1.&#160;Boost.Log v2"> <link rel="up" href="utilities.html#header.boost.log.utility.type_dispatch.standard_types_hpp" title="Header &lt;boost/log/utility/type_dispatch/standard_types.hpp&gt;"> <link rel="prev" href="BOOST_LOG_AUX_STANDARD_LONG_LONG_TYPES.html" title="Macro BOOST_LOG_AUX_STANDARD_LONG_LONG_TYPES"> <link rel="next" href="BOOST_LOG_STANDARD_FLOATING_POINT_TYPES.html" title="Macro BOOST_LOG_STANDARD_FLOATING_POINT_TYPES"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="BOOST_LOG_AUX_STANDARD_LONG_LONG_TYPES.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="utilities.html#header.boost.log.utility.type_dispatch.standard_types_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BOOST_LOG_STANDARD_FLOATING_POINT_TYPES.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="BOOST_LOG_STANDARD_INTEGRAL_TYPES"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Macro BOOST_LOG_STANDARD_INTEGRAL_TYPES</span></h2> <p>BOOST_LOG_STANDARD_INTEGRAL_TYPES &#8212; Boost.Preprocessor sequence of integral types. </p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="utilities.html#header.boost.log.utility.type_dispatch.standard_types_hpp" title="Header &lt;boost/log/utility/type_dispatch/standard_types.hpp&gt;">boost/log/utility/type_dispatch/standard_types.hpp</a>&gt; </span>BOOST_LOG_STANDARD_INTEGRAL_TYPES()</pre></div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2007-2016 Andrey Semashev<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>). </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="BOOST_LOG_AUX_STANDARD_LONG_LONG_TYPES.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="utilities.html#header.boost.log.utility.type_dispatch.standard_types_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BOOST_LOG_STANDARD_FLOATING_POINT_TYPES.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
yinchunlong/abelkhan-1
ext/c++/thirdpart/c++/boost/libs/log/doc/html/BOOST_LOG_STANDARD_INTEGRAL_TYPES.html
HTML
mit
3,501
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/03112/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:03:30 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack --> <head> <title>Index of /lghtml/lawstat/version2/03112</title> </head> <body> <h1>Index of /lghtml/lawstat/version2/03112</h1> <ul><li><a href="../index.html"> Parent Directory</a></li> <li><a href="03112102010400.html"> 03112102010400.htm</a></li> <li><a href="0311260080600.html"> 0311260080600.htm</a></li> <li><a href="0311291052400.html"> 0311291052400.htm</a></li> <li><a href="0311291112600.html"> 0311291112600.htm</a></li> <li><a href="0311297111800.html"> 0311297111800.htm</a></li> </ul> </body> <!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/03112/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:03:30 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack --> </html>
czchen/laweasyread-data
rawdata/utf8_lawstat/version2/03112/index.html
HTML
mit
1,117
<!DOCTYPE html> <html lang="en"> <head> <title>threejs webgl - materials - hdr environment mapping</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { color: #000; font-family:Monospace; font-size:13px; text-align:center; background-color: #000; margin: 0px; overflow: hidden; } a { color: #00f } #info { position: absolute; top: 0px; width: 100%; padding: 5px; } </style> </head> <body> <div id="container"></div> <div id="info"><a href="http://threejs.org" target="_blank">threejs</a> - High dynamic range (RGBE) Image-based Lighting (IBL)<br />using run-time generated pre-filtered roughness mipmaps (PMREM)<br/> Created by Prashant Sharma and <a href="http://clara.io/" target="_blank">Ben Houston</a>.</div> <script src="../build/three.js"></script> <script src="js/controls/OrbitControls.js"></script> <script src="js/loaders/RGBELoader.js"></script> <script src="js/loaders/HDRCubeTextureLoader.js"></script> <script src="js/Detector.js"></script> <script src="js/libs/stats.min.js"></script> <script src="js/Half.js"></script> <script src="js/Encodings.js"></script> <script src="js/pmrem/PMREMGenerator.js"></script> <script src="js/pmrem/PMREMCubeUVPacker.js"></script> <script src="js/libs/dat.gui.min.js"></script> <script src="js/postprocessing/EffectComposer.js"></script> <script src="js/postprocessing/RenderPass.js"></script> <script src="js/postprocessing/MaskPass.js"></script> <script src="js/postprocessing/ShaderPass.js"></script> <script src="js/shaders/CopyShader.js"></script> <script src="js/shaders/FXAAShader.js"></script> <script src="js/postprocessing/BloomPass.js"></script> <script src="js/shaders/ConvolutionShader.js"></script> <script> if ( ! Detector.webgl ) Detector.addGetWebGLMessage(); var container, stats; var params = { envMap: "HDR", projection: 'normal', roughness: 1.0, bumpScale: 0.3, background: false, exposure: 1.0 }; var camera, scene, renderer, controls, objects = []; var hdrCubeMap; var composer; var standardMaterial, floorMaterial; var ldrCubeRenderTarget, hdrCubeRenderTarget, rgbmCubeRenderTarget; init(); animate(); function init() { container = document.createElement( 'div' ); document.body.appendChild( container ); camera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 1, 2000 ); camera.position.set( 0.0, 40, 40 * 3.5 ); scene = new THREE.Scene(); renderer = new THREE.WebGLRenderer( { antialias: false } ); renderer.setClearColor( new THREE.Color( 0xffffff ) ); renderer.toneMapping = THREE.LinearToneMapping; standardMaterial = new THREE.MeshStandardMaterial( { map: null, bumpScale: - 0.05, color: 0xffffff, metalness: 1.0, roughness: 1.0, shading: THREE.SmoothShading } ); var geometry = new THREE.TorusKnotGeometry( 18, 8, 150, 20 ); var torusMesh1 = new THREE.Mesh( geometry, standardMaterial ); torusMesh1.position.x = 0.0; torusMesh1.castShadow = true; torusMesh1.receiveShadow = true; scene.add( torusMesh1 ); objects.push( torusMesh1 ); floorMaterial = new THREE.MeshStandardMaterial( { map: null, roughnessMap: null, color: 0xffffff, metalness: 0.0, roughness: 0.0, shading: THREE.SmoothShading } ); var planeGeometry = new THREE.PlaneBufferGeometry( 200, 200 ); var planeMesh1 = new THREE.Mesh( planeGeometry, floorMaterial ); planeMesh1.position.y = - 50; planeMesh1.rotation.x = - Math.PI * 0.5; planeMesh1.receiveShadow = true; scene.add( planeMesh1 ); var textureLoader = new THREE.TextureLoader(); textureLoader.load( "./textures/roughness_map.jpg", function( map ) { map.wrapS = THREE.RepeatWrapping; map.wrapT = THREE.RepeatWrapping; map.anisotropy = 4; map.repeat.set( 9, 2 ); standardMaterial.roughnessMap = map; standardMaterial.bumpMap = map; standardMaterial.needsUpdate = true; } ); var genCubeUrls = function( prefix, postfix ) { return [ prefix + 'px' + postfix, prefix + 'nx' + postfix, prefix + 'py' + postfix, prefix + 'ny' + postfix, prefix + 'pz' + postfix, prefix + 'nz' + postfix ]; }; var hdrUrls = genCubeUrls( "./textures/cube/pisaHDR/", ".hdr" ); new THREE.HDRCubeTextureLoader().load( THREE.UnsignedByteType, hdrUrls, function ( hdrCubeMap ) { var pmremGenerator = new THREE.PMREMGenerator( hdrCubeMap ); pmremGenerator.update( renderer ); var pmremCubeUVPacker = new THREE.PMREMCubeUVPacker( pmremGenerator.cubeLods ); pmremCubeUVPacker.update( renderer ); hdrCubeRenderTarget = pmremCubeUVPacker.CubeUVRenderTarget; } ); var ldrUrls = genCubeUrls( "./textures/cube/pisa/", ".png" ); new THREE.CubeTextureLoader().load( ldrUrls, function ( ldrCubeMap ) { ldrCubeMap.encoding = THREE.GammaEncoding; var pmremGenerator = new THREE.PMREMGenerator( ldrCubeMap ); pmremGenerator.update( renderer ); var pmremCubeUVPacker = new THREE.PMREMCubeUVPacker( pmremGenerator.cubeLods ); pmremCubeUVPacker.update( renderer ); ldrCubeRenderTarget = pmremCubeUVPacker.CubeUVRenderTarget; } ); var rgbmUrls = genCubeUrls( "./textures/cube/pisaRGBM16/", ".png" ); new THREE.CubeTextureLoader().load( rgbmUrls, function ( rgbmCubeMap ) { rgbmCubeMap.encoding = THREE.RGBM16Encoding; var pmremGenerator = new THREE.PMREMGenerator( rgbmCubeMap ); pmremGenerator.update( renderer ); var pmremCubeUVPacker = new THREE.PMREMCubeUVPacker( pmremGenerator.cubeLods ); pmremCubeUVPacker.update( renderer ); rgbmCubeRenderTarget = pmremCubeUVPacker.CubeUVRenderTarget; } ); // Lights scene.add( new THREE.AmbientLight( 0x222222 ) ); var spotLight = new THREE.SpotLight( 0xffffff ); spotLight.position.set( 50, 100, 50 ); spotLight.angle = Math.PI / 7; spotLight.penumbra = 0.8; spotLight.castShadow = true; scene.add( spotLight ); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); renderer.shadowMap.enabled = true; container.appendChild( renderer.domElement ); //renderer.toneMapping = THREE.ReinhardToneMapping; renderer.gammaInput = true; renderer.gammaOutput = true; stats = new Stats(); container.appendChild( stats.dom ); controls = new THREE.OrbitControls( camera, renderer.domElement ); controls.target.set( 0, 0, 0 ); controls.update(); window.addEventListener( 'resize', onWindowResize, false ); var gui = new dat.GUI(); gui.add( params, 'envMap', [ 'None', 'LDR', 'HDR', 'RGBM16' ] ); gui.add( params, 'roughness', 0, 1 ); gui.add( params, 'bumpScale', - 1, 1 ); gui.add( params, 'exposure', 0.1, 2 ); gui.open(); } function onWindowResize() { var width = window.innerWidth; var height = window.innerHeight; camera.aspect = width / height; camera.updateProjectionMatrix(); renderer.setSize( width, height ); } // function animate() { requestAnimationFrame( animate ); stats.begin(); render(); stats.end(); } function render() { if ( standardMaterial !== undefined ) { standardMaterial.roughness = params.roughness; standardMaterial.bumpScale = - 0.05 * params.bumpScale; var newEnvMap = standardMaterial.envMap; switch( params.envMap ) { case 'None': newEnvMap = null; break; case 'LDR': newEnvMap = ldrCubeRenderTarget ? ldrCubeRenderTarget.texture : null; break; case 'HDR': newEnvMap = hdrCubeRenderTarget ? hdrCubeRenderTarget.texture : null; break; case 'RGBM16': newEnvMap = rgbmCubeRenderTarget ? rgbmCubeRenderTarget.texture : null; break; } if( newEnvMap !== standardMaterial.envMap ) { standardMaterial.envMap = newEnvMap; standardMaterial.needsUpdate = true; floorMaterial.emissive = new THREE.Color( 1, 1, 1 ); floorMaterial.emissiveMap = newEnvMap; floorMaterial.needsUpdate = true; } } renderer.toneMappingExposure = Math.pow( params.exposure, 4.0 ); var timer = Date.now() * 0.00025; camera.lookAt( scene.position ); for ( var i = 0, l = objects.length; i < l; i ++ ) { var object = objects[ i ]; object.rotation.y += 0.005; } renderer.render( scene, camera ); } </script> </body> </html>
Coburn37/three.js
examples/webgl_materials_envmaps_hdr.html
HTML
mit
8,704
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Boost.Geometry (aka GGL, Generic Geometry Library)</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head> <table cellpadding="2" width="100%"> <tbody> <tr> <td valign="top"> <img alt="Boost.Geometry" src="images/ggl-logo-big.png" height="80" width="200"> &nbsp;&nbsp; </td> <td valign="top" align="right"> <a href="http://www.boost.org"> <img alt="Boost C++ Libraries" src="images/accepted_by_boost.png" height="80" width="230" border="0"> </a> </td> </tr> </tbody> </table> <!-- Generated by Doxygen 1.7.6.1 --> <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="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespaceboost.html">boost</a> </li> <li class="navelem"><a class="el" href="namespaceboost_1_1geometry.html">geometry</a> </li> <li class="navelem"><a class="el" href="namespaceboost_1_1geometry_1_1resolve__variant.html">resolve_variant</a> </li> <li class="navelem"><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_f59c49c769f8a7ba44e1981f5f6b7912.html">within&lt; Geometry1, boost::variant&lt; BOOST_VARIANT_ENUM_PARAMS(T)&gt; &gt;</a> </li> <li class="navelem"><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html">visitor</a> </li> </ul> </div> </div> <div class="header"> <div class="headertitle"> <div class="title">boost::geometry::resolve_variant::within&lt; Geometry1, boost::variant&lt; BOOST_VARIANT_ENUM_PARAMS(T)&gt; &gt;::visitor&lt; Strategy &gt; Member List</div> </div> </div><!--header--> <div class="contents"> This is the complete list of members for <a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html">boost::geometry::resolve_variant::within&lt; Geometry1, boost::variant&lt; BOOST_VARIANT_ENUM_PARAMS(T)&gt; &gt;::visitor&lt; Strategy &gt;</a>, including all inherited members.<table> <tr class="memlist"><td><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html#aa93f898052eaa46956eb6c5e0a5e52d9">m_geometry1</a></td><td><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html">boost::geometry::resolve_variant::within&lt; Geometry1, boost::variant&lt; BOOST_VARIANT_ENUM_PARAMS(T)&gt; &gt;::visitor&lt; Strategy &gt;</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html#ad488a14e1a75abea87ff87e30caa7f23">m_strategy</a></td><td><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html">boost::geometry::resolve_variant::within&lt; Geometry1, boost::variant&lt; BOOST_VARIANT_ENUM_PARAMS(T)&gt; &gt;::visitor&lt; Strategy &gt;</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html#a1bed78494b9492cf89c99db05a7a534b">operator()</a>(Geometry2 const &amp;geometry2) const </td><td><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html">boost::geometry::resolve_variant::within&lt; Geometry1, boost::variant&lt; BOOST_VARIANT_ENUM_PARAMS(T)&gt; &gt;::visitor&lt; Strategy &gt;</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html#a3c02bd8d40c6dceec7bcce451e50f0b4">visitor</a>(Geometry1 const &amp;geometry1, Strategy const &amp;strategy)</td><td><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_fe6f419073623544800edee6cc0fea81.html">boost::geometry::resolve_variant::within&lt; Geometry1, boost::variant&lt; BOOST_VARIANT_ENUM_PARAMS(T)&gt; &gt;::visitor&lt; Strategy &gt;</a></td><td></td></tr> </table></div><!-- contents --> <hr size="1"> <table width="100%"> <tbody> <tr> <td align="left"><small> <p>April 2, 2011</p> </small></td> <td align="right"> <small> Copyright &copy; 2007-2011 Barend Gehrels, Amsterdam, the Netherlands<br> Copyright &copy; 2008-2011 Bruno Lalande, Paris, France<br> Copyright &copy; 2009-2010 Mateusz Loskot, London, UK<br> </small> </td> </tr> </tbody> </table> <address style="text-align: right;"><small> Documentation is generated by&nbsp;<a href="http://www.doxygen.org/index.html">Doxygen</a> </small></address> </body> </html>
yinchunlong/abelkhan-1
ext/c++/thirdpart/c++/boost/libs/geometry/doc/doxy/doxygen_output/html_by_doxygen/structboost_1_1geometry_1_1resolve__variant_1_1within_3_01_geometry1_00_01boost_1_1variant_3_01_e47d0e619acf3d8ad1f57a83f85a4e8b.html
HTML
mit
6,104
Hola {USERNAME} Que heu rebut aquest correu electrònic perquè vostè té (o algú es fa passar per tu ha) sol·licitar una nova contrasenya s'enviarà per compte en {SITENAME}. Si no sol·licitar aquest correu, si us plau, ignorar-lo, si voleu seguir rebent-lo si us plau en contacte amb el consell de l'administrador. Per utilitzar la nova contrasenya que vostè necessita per activar-lo. Per a fer això feu clic a l'enllaç que et facilitem a continuació. {U_ACTIVATE} Si reeixides vostè serà capaç de connectar amb la següent contrasenya: Contrasenya: {PASSWORD} Per descomptat, podeu canviar aquesta contrasenya-se a través de la pàgina de perfil. Si teniu algun problema contacteu amb el consell de l'administrador. {EMAIL_SIG}
torrentpier/torrentpier
library/language/ca/email/user_activate_passwd.html
HTML
mit
750
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=utf-8" http-equiv="content-type"/> <meta content="en-us" http-equiv="Content-Language"/> <title>Blogger Sans - Web Font Specimen</title> <link rel="stylesheet" type="text/css" media="screen" href="BloggerSans.css" /> <style type="text/css" media="screen"> body { font-size: 42px; font-family: "BloggerSans", Georgia; } </style> </head> <body> <p contenteditable="true">The quick brown fox jumps over the lazy dog. $123.45!</p> </body> </html>
tigefa4u/tigefa4u.github.io
static/fonts/BloggerSans/BloggerSans.html
HTML
mit
662
<div ng-controller="ArticlesController"> <div > <div> <form style="margin-left: -50px" class='form-horizontal' action='/posts/create' method='post' > <div class='control-label' > <label for='title'>Title</label> </div> <div class='controls' > <input id='title' type='text' name='title' required="required" /> </div> <br> <div class='controls row'> <div class="span12"> <p> <div style="text-align: center;" data-toggle="buttons-radio" ng-init="textboxClass='span6';previewClass='span6'" class="btn-group"> <input type="button" ng-click="textboxClass='span12';previewClass='hide'" class="btn btn-mini" value="编辑"><i class="icon-chevron-left"></i></input> <input type="button" ng-click="textboxClass='span6';previewClass='span6'" class="btn btn-mini active" value="双页"><i class="icon-pause"></i></input> <input type="button" ng-click="textboxClass='hide';previewClass='span12'" class="btn btn-mini" value="预览"><i class="icon-chevron-right"></i></input> </div> </p> </div> </div> <div class='control-label' > <label for='content'>Content</label> </div> <div class="controls row"> <div ng-class="textboxClass"> <textarea ng-style="textboxStyle" ng-model="message" id='content' type='text' name='content' required="required" style="padding:5px; margin-left: 0px; margin-left: 0px; padding-right: 0px; height: 400px"/> </div> <div ng-class="previewClass"> <div ng-style="previewStyle" ng-bind-html="message | markdown" class="markdown-preview" style="margin-left: 0px; padding-left: 0px; margin-right: 0px"></div> </div> <div style="clear:both"></div> </div> <div style="margin-left: 180px;margin-top: 20px" > <input class='btn btn-primary' type='submit' /> </div> </form> <div style="margin-left: 130px"> <input accept="image/*" type="file" name="file" style="visibility:hidden;" id="pdffile" ng-file-select="onFileSelect($files)" /><br/> <div class="input-append"> <input ng-model="myModelObj" type="text" name="subfile" id="subfile" class="input-xlarge"> <a class="btn" onclick="$('#pdffile').click();">上传图片</a> </div> </div> </div> <div ng-include="currentView"> </div> </div> </div>
tsq-old/exprocms
public/views/post/create.html
HTML
mit
2,934
<div class="bs-docs-section" ng-controller="ModalDemoCtrl"> <div class="page-header"> <h1 id="modals">Modals <a class="small" href="//github.com/mgcrea/angular-strap/blob/master/src/modal/modal.js" target="_blank">modal.js</a> </h1> <code>mgcrea.ngStrap.modal</code> </div> <h2 id="modals-examples">Examples</h2> <p>Modals are streamlined, but flexible, dialog prompts with the minimum required functionality and smart defaults.</p> <h3>Live demo <a class="small edit-plunkr" data-module-name="mgcrea.ngStrapDocs" data-content-html-url="modal/docs/modal.demo.html" data-content-js-url="modal/docs/modal.demo.js" ng-plunkr data-title="edit in plunker" data-placement="right" bs-tooltip>clog.info</a></h3> <pre class="bs-example-scope">$scope.modal = {{modal | json}};</pre> <div class="bs-example" style="padding-bottom: 24px;" append-source> <!-- Button to trigger a default modal with a scope as an object {title:'', content:'', etc.} --> <button type="button" class="btn btn-lg btn-primary" data-animation="am-fade-and-scale" data-placement="center" bs-modal="modal">Click to toggle modal <br /> <small>(using an object)</small> </button> <!-- You can use a custom html template with the `data-template` attr --> <button type="button" class="btn btn-lg btn-danger" data-animation="am-fade-and-slide-top" data-template="modal/docs/modal.tpl.demo.html" bs-modal="modal">Custom Modal <br /> <small>(using data-template)</small> </button> </div> <div class="callout callout-info"> <h4>Backdrop animation</h4> <p>Backdrop animation being powered by <code>ngAnimate</code>, it requires custom CSS.</p> <pre class="bs-exemple-code"> <code class="css" highlight-block> .modal-backdrop.am-fade { opacity: .5; transition: opacity .15s linear; &.ng-enter { opacity: 0; &.ng-enter-active { opacity: .5; } } &.ng-leave { opacity: .5; &.ng-leave-active { opacity: 0; } } } </code> </pre> </div> <h2 id="modals-usage">Usage</h2> <p>Append a <code>bs-modal</code>attribute to any element to activate the directive.</p> <div class="callout callout-info"> <h4>The module also exposes a <code>$modal</code>service</h4> <p>Available for programmatic use (inside a directive/controller).</p> <div class="highlight"> <pre> <code class="javascript" highlight-block> angular.module('myApp') .controller('DemoCtrl', function($scope, $modal) { // Show a basic modal from a controller var myModal = $modal({title: 'My Title', content: 'My Content', show: true}); // Pre-fetch an external template populated with a custom scope var myOtherModal = $modal({scope: $scope, template: 'modal/docs/modal.tpl.demo.html', show: false}); // Show when some event occurs (use $promise property to ensure the template has been loaded) $scope.showModal = function() { myOtherModal.$promise.then(myOtherModal.show); }; }) </code> </pre> </div> </div> <h3>Options</h3> <p>Options can be passed via data-attributes on the directive or as an object hash to configure the service. For data attributes, append the option name to <code>data-</code>, as in <code>data-animation=""</code>.</p> <p>For directives, you can naturally inherit the contextual <code>$scope</code> or leverage a custom one with an <a href="http://docs.angularjs.org/guide/expression">AngularJS expression</a> to evaluate as an object directly on the <code>bs-modal</code> attribute</p> <div class="table-responsive"> <table class="table table-bordered table-striped"> <thead> <tr> <th style="width: 100px;">Name</th> <th style="width: 50px;">type</th> <th style="width: 50px;">default</th> <th>description</th> </tr> </thead> <tbody> <tr> <td>animation</td> <td>string</td> <td>am-fade</td> <td>apply a CSS animation powered by ngAnimate</td> </tr> <tr> <td>backdropAnimation</td> <td>string</td> <td>am-fade</td> <td>apply a CSS animation to backdrop powered by ngAnimate</td> </tr> <tr> <td>placement</td> <td>string</td> <td>'top'</td> <td>how to position the modal - top | bottom | center <small>(requires custom CSS)</small>.</td> </tr> <tr> <td>title</td> <td>string</td> <td>''</td> <td>default title value if <code>title</code>attribute isn't present</td> </tr> <tr> <td>content</td> <td>string</td> <td>''</td> <td>default content value if <code>data-content</code>attribute isn't present</td> </tr> <tr> <td>html</td> <td>boolean</td> <td>false</td> <td>replace <code>ng-bind</code> with <code>ng-bind-html</code>, requires <code>ngSanitize</code> to be loaded</td> </tr> <tr> <td>backdrop</td> <td>boolean or the string <code>'static'</code> </td> <td>true</td> <td>Includes a modal-backdrop element. Alternatively, specify <code>static</code>for a backdrop which doesn't close the modal on click.</td> </tr> <tr> <td>keyboard</td> <td>boolean</td> <td>true</td> <td>Closes the modal when escape key is pressed</td> </tr> <tr> <td>show</td> <td>boolean</td> <td>true</td> <td>Shows the modal when initialized.</td> </tr> <tr> <td>container</td> <td>string | false</td> <td>false</td> <td> <p>Appends the popover to a specific element. Example: <code>container: 'body'</code>. This option is particularly useful in that it allows you to position the popover in the flow of the document near the triggering element -&nbsp;which will prevent the popover from floating away from the triggering element during a window resize.</p> </td> </tr> <tr> <td>template</td> <td>path</td> <td>false</td> <td> <p>If provided, overrides the default template, can be either a remote URL or a cached template id.</p> <p>It should be a <code>div.modal</code> element following Bootstrap styles conventions (<a href="//github.com/mgcrea/angular-strap/blob/master/src/modal/modal.tpl.html" target="_blank">like this</a>).</p> </td> </tr> <tr> <td>contentTemplate</td> <td>path</td> <td>false</td> <td> <p>If provided, fetches the partial and includes it as the inner content, can be either a remote URL or a cached template id.</p> </td> </tr> <tr> <td>prefixEvent</td> <td>string</td> <td>'modal'</td> <td> <p>If provided, prefixes the events '.hide.before' '.hide' '.show.before' and '.show' with the passed in value. With the default value these events are 'modal.hide.before' 'modal.hide' 'modal.show.before' and 'modal.show'</p> </td> </tr> <tr> <td>id</td> <td>string</td> <td>''</td> <td> The modal instance id for usage in event handlers. </td> </tr> </tbody> </table> </div> <div class="callout callout-info"> <h4>Default options</h4> <p>You can override global defaults for the plugin with <code>$modalProvider.defaults</code></p> <div class="highlight"> <pre class="bs-exemple-code"> <code class="javascript" highlight-block> angular.module('myApp') .config(function($modalProvider) { angular.extend($modalProvider.defaults, { animation: 'am-flip-x' }); }) </code> </pre> </div> </div> <h3>Scope methods</h3> <p>Methods available inside the directive scope to toggle visibility.</p> <h4>$show()</h4> <p>Reveals the modal.</p> <h4>$hide()</h4> <p>Hides the modal.</p> <h4>$toggle()</h4> <p>Toggles the modal.</p> </div>
jarza6ek/angular-strap
src/modal/docs/modal.demo.html
HTML
mit
8,575
{% comment %} Dynamically generates a list of links to pages with `layout: page` in the front-matter, sorted alphabetically by URL. {% endcomment %} {% assign pages_list = site.pages | sort:"url" %} {% for node in pages_list %} {% if node.title != null %} {% if node.layout == "page" %} <a class="{% if page.url == node.url %} active{% endif %}" href="{{ node.url }}"> {{ node.title }} </a> {% endif %} {% endif %} {% endfor %}
mdo/jekyll-snippets
pages-nav.html
HTML
mit
463
<!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_17) on Sun Nov 03 15:35:47 CET 2013 --> <title>Uses of Class com.badlogic.gdx.graphics.g3d.model.data.ModelMaterial (libgdx API)</title> <meta name="date" content="2013-11-03"> <link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.badlogic.gdx.graphics.g3d.model.data.ModelMaterial (libgdx API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelMaterial.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em> libgdx API <style> body, td, th { font-family:Helvetica, Tahoma, Arial, sans-serif; font-size:10pt } pre, code, tt { font-size:9pt; font-family:Lucida Console, Courier New, sans-serif } h1, h2, h3, .FrameTitleFont, .FrameHeadingFont, .TableHeadingColor font { font-size:105%; font-weight:bold } .TableHeadingColor { background:#EEEEFF; } a { text-decoration:none } a:hover { text-decoration:underline } a:link, a:visited { color:blue } table { border:0px } .TableRowColor td:first-child { border-left:1px solid black } .TableRowColor td { border:0px; border-bottom:1px solid black; border-right:1px solid black } hr { border:0px; border-bottom:1px solid #333366; } </style> </em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/badlogic/gdx/graphics/g3d/model/data/class-use/ModelMaterial.html" target="_top">Frames</a></li> <li><a href="ModelMaterial.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.badlogic.gdx.graphics.g3d.model.data.ModelMaterial" class="title">Uses of Class<br>com.badlogic.gdx.graphics.g3d.model.data.ModelMaterial</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelMaterial.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelMaterial</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.badlogic.gdx.graphics.g3d.model.data">com.badlogic.gdx.graphics.g3d.model.data</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.badlogic.gdx.graphics.g3d.model.data"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelMaterial.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelMaterial</a> in <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/package-summary.html">com.badlogic.gdx.graphics.g3d.model.data</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/package-summary.html">com.badlogic.gdx.graphics.g3d.model.data</a> with type parameters of type <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelMaterial.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelMaterial</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../com/badlogic/gdx/utils/Array.html" title="class in com.badlogic.gdx.utils">Array</a>&lt;<a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelMaterial.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelMaterial</a>&gt;</code></td> <td class="colLast"><span class="strong">ModelData.</span><code><strong><a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelData.html#materials">materials</a></strong></code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelMaterial.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em>libgdx API</em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/badlogic/gdx/graphics/g3d/model/data/class-use/ModelMaterial.html" target="_top">Frames</a></li> <li><a href="ModelMaterial.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <div style="font-size:9pt"><i> Copyright &copy; 2010-2013 Mario Zechner ([email protected]), Nathan Sweet ([email protected]) </i></div> </small></p> </body> </html>
emeryduh/TeamJones_Project
libgdx/docs/api/com/badlogic/gdx/graphics/g3d/model/data/class-use/ModelMaterial.html
HTML
mit
7,972
<html> <head> <title>Guess the Language!</title> </head> <body> <h1>Guess the Language</h1> <p>Think of your favorite programming language. I'm going to try to guess it!</p> <p>Ready? Click <a href="{{ url_for('question') }}">here</a> to begin!</p> </body> </html>
abdulbaqi/flask-pycon2015
templates/index.html
HTML
mit
313
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <meta name="description" content=""> <meta name="author" content=""> <link href="https://fonts.googleapis.com/css?family=Montserrat:400.7.2" rel="stylesheet" type="text/css"> <title>Dokku - The smallest PaaS implementation you've ever seen</title> <link rel="apple-touch-icon" sizes="57x57" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="76x76" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-114x114.png"> <link rel="apple-touch-icon" sizes="120x120" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-144x144.png"> <link rel="apple-touch-icon" sizes="152x152" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-152x152.png"> <link rel="apple-touch-icon" sizes="180x180" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/apple-touch-icon-180x180.png"> <link rel="icon" type="image/png" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/favicon-32x32.png" sizes="32x32"> <link rel="icon" type="image/png" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/android-chrome-192x192.png" sizes="192x192"> <link rel="icon" type="image/png" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/favicon-96x96.png" sizes="96x96"> <link rel="icon" type="image/png" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/favicon-16x16.png" sizes="16x16"> <link rel="manifest" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/manifest.json"> <link rel="shortcut icon" href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/favicon.ico"> <meta name="apple-mobile-web-app-title" content="Dokku"> <meta name="application-name" content="Dokku"> <meta name="msapplication-TileColor" content="#da532c"> <meta name="msapplication-TileImage" content="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/mstile-144x144.png"> <meta name="msapplication-config" content="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/favicons/browserconfig.xml"> <meta name="theme-color" content="#ffffff"> <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" rel="stylesheet"> <link href="https://cdn.rawgit.com/dokku/dokku/v0.7.2/docs/assets/style.css" rel="stylesheet"> <!-- <link href="/dokku/docs/assets/style.css" rel="stylesheet"> --> <style> </style> </head> <body> <div class="header"> <div class="container"> <div class="row"> <div> <h1 class="heading navbar-brand"> <a href="/{{NAME}}/">Dokku</a> </h1> <ul class="nav nav-pills pull-xs-right"> <li class="nav-item"> <a class="nav-link" href="https://dokku.github.io/">Blog</a> </li> <li class="nav-item"> <a class="nav-link" href="https://github.com/dokku/dokku/">Code</a> </li> <li class="nav-item"> <a class="nav-link" href="/{{NAME}}/getting-started/installation/">Docs</a> </li> <li class="nav-item"> <a class="nav-link" href="https://webchat.freenode.net/?channels=dokku">IRC</a> </li> <li class="nav-item"> <a class="nav-link" href="https://glider-slackin.herokuapp.com/">Slack</a> </li> <li class="nav-item"> <a class="nav-link" href="https://gliderlabs.us10.list-manage.com/subscribe?u=49c4b06ffd30bcf49ec53c277&amp;id=f526006fd5">Newsletter</a> </li> </ul> </div> </div> </div> </div> <div class="blurb"> <div class="container"> <div class="row"> <h2>The smallest PaaS implementation you've ever seen</h2> <p>Dokku helps you build and manage the lifecycle of applications</p> <div class="blurb-buttons"> <a class="btn btn-lg btn-warning" href="/{{NAME}}/getting-started/installation/">View Documentation</a> </div> </div> </div> </div> <div class="container marketing"> <div class="quickstart-code"> <p class="title">Quick-start Instructions</p> <div class="tabs"> <div data-tab="curl" class="tab tab-curl tab-active">curl | bash</div> <div data-tab="apt" class="tab tab-apt">apt</div> <div data-tab="arch" class="tab tab-arch">arch</div> </div> <div class="shell shell-curl shell-active"> <p class="line"> <span class="output">&nbsp;# for debian systems, installs dokku via apt-get</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">wget https://raw.githubusercontent.com/dokku/dokku/v0.7.2/bootstrap.sh</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">sudo DOKKU_TAG=v0.7.2 bash bootstrap.sh</span> </p> <p class="line"> <span class="output">&nbsp;# go to your server's IP and follow the web installer</span> </p> </div> <div class="shell shell-apt"> <p class="line"> <span class="output">&nbsp;# install docker</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">wget -nv -O - https://get.docker.com/ | sh</span> </p> <p class="line"> <span class="output">&nbsp;# setup dokku apt repository</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">wget -nv -O - https://packagecloud.io/gpg.key | apt-key add -</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">export SOURCE="https://packagecloud.io/dokku/dokku/ubuntu/"</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">echo "deb $SOURCE trusty main" | tee /etc/apt/sources.list.d/dokku.list</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">apt-get update</span> </p> <p class="line"> <span class="output">&nbsp;# install dokku</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">apt-get install dokku</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">dokku plugin:install-dependencies --core <span class="output"># run with root!</span></span> </p> <p class="line"> <span class="output">&nbsp;# go to your server's IP and follow the web installer</span> </p> </div> <div class="shell shell-arch"> <p class="line"> <span class="output">&nbsp;# install dokku via yaourt</span> </p> <p class="line"> <span class="path"></span> <span class="prompt">$</span> <span class="command">yaourt -S dokku</span> </p> </div> </div> <div class="alternate-instructions"> <p>Hate <code>curl | bash</code>? See our official <a href="https://github.com/Azure/azure-quickstart-templates/tree/master/dokku-vm" target="_blank">Azure</a>, <a href="https://www.digitalocean.com/features/one-click-apps/dokku/" target="_blank">DigitalOcean</a>, <a href="/{{NAME}}~{{REF}}/getting-started/install/dreamhost/">DreamHost Cloud</a>, and <a href="/{{NAME}}~{{REF}}/getting-started/install/linode/" target="_blank">Linode</a> instructions.<p> <p>Still no love? <a href="https://github.com/dokku/dokku/blob/master/CONTRIBUTING.md" target="_blank">Contributions welcome</a>!</a> </div> </div> <div class="container-fluid slack-channel"> Have a question? Join us in our public slack channel! <div class="inline-container"> <a class="button slack-button" href="https://glider-slackin.herokuapp.com/"> <img src="./assets/slack-logo.png" alt="Slack Logo"> </a> </div> </div> <div class="container marketing"> <!-- START THE FEATURETTES --> <div class="row featurette"> <div class="col-md-7"> <h2 class="featurette-heading">Own Your PaaS. <span class="text-muted">Infrastructure at a fraction of the cost.</span></h2> <p class="lead">Powered by Docker, you can install Dokku on any hardware. Use it on inexpensive cloud providers. Use the extra cash to buy a pony or feed kittens. You'll save tens of dollars a year on your dog photo sharing website.</p> </div> <div class="col-md-5"> <img class="featurette-image img-responsive center-block" alt="Docker Logo" src="./assets/docker.png"> </div> </div> <hr class="featurette-divider"> <div class="row featurette"> <div class="col-md-7 col-md-push-5"> <h2 class="featurette-heading">Easy Git Deploys. <span class="text-muted">From your command-line to the cloud.</span></h2> <p class="lead">Once it's set up on a host, you can push Heroku-compatible applications to it via Git. They'll build using Heroku buildpacks and then run in isolated containers. The end result is your own, single-host version of Heroku.</p> </div> <div class="col-md-5 col-md-pull-7"> <img class="featurette-image img-responsive center-block" alt="Git Logo" src="./assets/git.png"> </div> </div> <hr class="featurette-divider"> <div class="row featurette"> <div class="col-md-7"> <h2 class="featurette-heading">Extensible Platform. <span class="text-muted">Customize your PaaS.</span></h2> <p class="lead">Write dokku plugins in any language. Share them online with others, and extend those already available. Dokku's simple core is easy to hack and add the features you need to get your job done.</p> </div> <div class="col-md-5"> <img class="featurette-image img-responsive center-block" alt="Extend Logo" src="./assets/extend.png"> </div> </div> </div> <div class="container-fluid slack-channel team-members"> <h3>Meet the core team</h3> <div class="row"> <div class="team-member col-md-offset-0 col-md-4 col-sm-offset-2 col-sm-4 col-xs-offset-3 col-xs-6"> <div class="team-member-image"> <img src="./assets/team/progrium-hidden.jpg" alt="Jeff Lindsay"> <img src="./assets/team/progrium.jpg" alt="Jeff Lindsay"> </div> Jeff Lindsay <a class="fund-link" href="https://www.patreon.com/progrium">Sponsor people they sponsor</a> </div> <div class="team-member col-md-offset-0 col-md-4 col-sm-offset-0 col-sm-4 col-xs-offset-3 col-xs-6"> <div class="team-member-image"> <img src="./assets/team/josegonzalez-hidden.jpg" alt="Morris Jobke"> <img src="./assets/team/josegonzalez.jpg" alt="Morris Jobke"> </div> Jose Diaz-Gonzalez <a class="fund-link" href="http://www.amazon.com/registry/wishlist/36RYHSXCFYDTG/">Buy him something nice</a> </div> <div class="team-member col-md-offset-0 col-md-4 col-sm-offset-2 col-sm-4 col-xs-offset-3 col-xs-6"> <div class="team-member-image"> <img src="./assets/team/u2mejc-hidden.jpg" alt="Justin Clark"> <img src="./assets/team/u2mejc.jpg" alt="Justin Clark"> </div> Justin Clark <a class="fund-link" href="http://smile.amazon.com/registry/wishlist/3SCPXMNI2EIYV">Feed his dog greenie treats!</a> </div> <div class="team-member col-md-offset-0 col-md-4 col-sm-offset-0 col-sm-4 col-xs-offset-3 col-xs-6"> <div class="team-member-image"> <img src="./assets/team/flink-hidden.jpg" alt="Loïc Guitaut"> <img src="./assets/team/flink.jpg" alt="Loïc Guitaut"> </div> Loïc Guitaut <a class="fund-link" href="https://www.amazon.com/gp/registry/wishlist/23NWY5AVAGGGO/">Build out his star wars collection</a> </div> <div class="team-member col-md-offset-0 col-md-4 col-sm-offset-2 col-sm-4 col-xs-offset-3 col-xs-6"> <div class="team-member-image"> <img src="./assets/team/michaelshobbs-hidden.jpg" alt="Michael Hobbs"> <img src="./assets/team/michaelshobbs.jpg" alt="Michael Hobbs"> </div> Michael Hobbs <a class="fund-link" href="https://gratipay.com/~michaelshobbs/">Fund on gratipay</a> </div> <div class="team-member col-md-offset-0 col-md-4 col-sm-offset-0 col-sm-4 col-xs-offset-3 col-xs-6"> <div class="team-member-image"> <img src="./assets/team/morrisjobke-hidden.jpg" alt="Morris Jobke"> <img src="./assets/team/morrisjobke.jpg" alt="Morris Jobke"> </div> Morris Jobke <a class="fund-link" href="">Get him an ebook</a> </div> </div> </div> <div class="container"> <footer> <p>&copy; 2013-2016 Dokku</p> </footer> </div> <script> document.addEventListener('DOMContentLoaded', function (e) { var addClass = function (el, className) { if (el.classList) { el.classList.add(className); } else { el.className += ' ' + className; } }, addListener = function (elem, type, fn) { if (elem.addEventListener) { elem.addEventListener(type, fn, false); } else if (elem.attachEvent) { elem.attachEvent("on" + type, function() { return fn.call(elem, window.event); }); } else { elem["on" + type] = fn; } }, hasClass = function(el, className) { if (el.classList) { return el.classList.contains(className); } else { return new RegExp('(^| )' + className + '( |$)', 'gi').test(el.className); } }, removeClass = function(el, className) { if (el.classList) { el.classList.remove(className); } else { el.className = el.className.replace(new RegExp('(^|\\b)' + className.split(' ').join('|') + '(\\b|$)', 'gi'), ' ');; } }, activateTab = function(tab) { removeClass(document.querySelectorAll('.shell-active')[0], 'shell-active'); removeClass(document.querySelectorAll('.tab-active')[0], 'tab-active'); addClass(document.querySelectorAll('.shell-' + tab)[0], 'shell-active'); addClass(document.querySelectorAll('.tab-' + tab)[0], 'tab-active'); window.location.hash = '#install-' + tab; }; var hash = window.location.hash.replace('#install-', ''); if (['curl', 'apt', 'arch'].indexOf(hash) !== -1) { activateTab(hash); } Array.prototype.forEach.call(document.querySelectorAll('.tab'), function (el, i) { addListener(el, 'click', function(e) { activateTab(this.getAttribute('data-tab')); }); }); }); </script> </body> </html>
sseemayer/dokku
docs/home.html
HTML
mit
16,876
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.12"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>EDDA: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">EDDA </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.12 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespaceedda.html">edda</a></li><li class="navelem"><a class="el" href="classedda_1_1CartesianGrid.html">CartesianGrid</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">edda::CartesianGrid Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a5113fab2e80988b778151608e42ae4da">at_vertex</a>(int verIdx, VECTOR3 &amp;pos)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a1d097420ee875e5843c0a2d74574a782">boundary</a>(VECTOR3 &amp;minB, VECTOR3 &amp;maxB)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a387121fae344bb70e0585c62193c161f">boundaryIntersection</a>(VECTOR3 &amp;intersectP, VECTOR3 &amp;startP, VECTOR3 &amp;endP, float *stepSize, float oldStepSize)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a1942381db5e2825ac62960dbe333f035">CartesianGrid</a>(int xdim, int ydim, int zdim)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#af59ed87c760524442d7f273212e03bc1">CartesianGrid</a>()</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#ac7fd54a60214a297fb5ea0428e75c522">cellVolume</a>(int cellId)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1Grid.html#a538c4f44fa3b37c892705f02475ba568">computeBBox</a>(void)=0</td><td class="entry"><a class="el" href="classedda_1_1Grid.html">edda::Grid</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a5fcd49675005e39a9a5bf04cff1192a0">getCellType</a>()=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a8320281bcfe0b9f7fad04cbb6f4dd080">getCellVertices</a>(int cellId, std::vector&lt; size_t &gt; &amp;vVertices)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#aa9e3f187b8ff610ddca88795b8c55eb5">getDimension</a>()</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a2f5865f683be69cb92e64f6d9c4d9814">getGridSpacing</a>(int cellId, float &amp;xspace, float &amp;yspace, float &amp;zspace)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a717a62a55b2244d94ee0daba808500e2">getIndex</a>(int i, int j, int k, size_t &amp;idx)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#aa206aa1bf588c180b8cfbe63723757b8">getInterpType</a>()</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1Grid.html#a1a342186fd933582723559004dd25489">Grid</a>()</td><td class="entry"><a class="el" href="classedda_1_1Grid.html">edda::Grid</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1Grid.html#ae408bdf07e1399a49b8ed072a6cea3f0">isInBBox</a>(VECTOR3 &amp;pos)=0</td><td class="entry"><a class="el" href="classedda_1_1Grid.html">edda::Grid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1Grid.html#a1b894a56e8196bde04c97c4e96356b98">isInCell</a>(PointInfo &amp;pInfo, const int cellId)=0</td><td class="entry"><a class="el" href="classedda_1_1Grid.html">edda::Grid</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">pure virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1Grid.html#a44af2580d9f5b7daaaec751af572d4d3">isInRealBBox</a>(VECTOR3 &amp;p)=0</td><td class="entry"><a class="el" href="classedda_1_1Grid.html">edda::Grid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1Grid.html#a9f1b1592679771450108ef0efb853211">isInRealBBox</a>(VECTOR3 &amp;pos, float t)=0</td><td class="entry"><a class="el" href="classedda_1_1Grid.html">edda::Grid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#ab87b87344ff04b342fba7a09bfd36259">m_nDimension</a></td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a096d323e8074766915b96d4d5ba545c3">m_vMaxBound</a></td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a363b39d07aa945fd4b0ea38ed36831e3">m_vMaxRealBound</a></td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a6b76c040a7f84ec3ccf4bc29de8672fc">m_vMinBound</a></td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a5eda0e56f6f7d3b802ece2d418e2e9f4">m_vMinRealBound</a></td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a7b596e7a80dd4a534a37a53dd0e4ddf8">phys_to_cell</a>(PointInfo &amp;pInfo)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a14dc0303c95983a8a70dcea7304b4cdb">Reset</a>(void)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a955ac477d9f7f95b6142a4cc97605c74">setBoundary</a>(VECTOR3 &amp;minB, VECTOR3 &amp;maxB)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#abe9b85a02f3cc95d6b3aea12bb54e1f9">setRealBoundary</a>(VECTOR4 &amp;minB, VECTOR4 &amp;maxB)=0</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#ab177745dd86d88eb84d67500748e2c00">xcelldim</a>(void)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</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="classedda_1_1CartesianGrid.html#aeb7c6fb8918008f17898bbffd2afdb8b">xdim</a>(void)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a260d4e7f4510c77bfc9341707bf8e341">ycelldim</a>(void)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</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="classedda_1_1CartesianGrid.html#ab018ac1a44d18def0a02d9b1691e4a06">ydim</a>(void)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#ab519af80b6c046f434155d66f39e0621">zcelldim</a>(void)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</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="classedda_1_1CartesianGrid.html#ac41b35c859961fbd6a087b42ec31dd26">zdim</a>(void)</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html#a2fdf7940fc29d204446d0d6480ef4c10">~CartesianGrid</a>()</td><td class="entry"><a class="el" href="classedda_1_1CartesianGrid.html">edda::CartesianGrid</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classedda_1_1Grid.html#a72f84115bb6a22fa18149e2c46141bed">~Grid</a>()</td><td class="entry"><a class="el" href="classedda_1_1Grid.html">edda::Grid</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Nov 15 2016 16:22:27 for EDDA by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.12 </small></address> </body> </html>
GRAVITYLab/edda
html/classedda_1_1CartesianGrid-members.html
HTML
mit
14,398
<!DOCTYPE html> <html lang="en"> <head> <title>Three.js Stacker</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { font-family: Monospace; background-color: #f0f0f0; margin: 0px; overflow: hidden; } #oldie { background-color: #ddd !important } </style> </head> <body> <script src="js/three.min.js"></script> <script src="js/Detector.js"></script> <script> if ( ! Detector.webgl ) Detector.addGetWebGLMessage(); var container; var camera, scene, renderer; var plane, cube; var mouse, raycaster, isShiftDown = false; var rollOverMesh, rollOverMaterial; var cubeGeo, cubeMaterial; var objects = []; init(); render(); function init() { container = document.createElement( 'div' ); document.body.appendChild( container ); var info = document.createElement( 'div' ); info.style.position = 'absolute'; info.style.top = '10px'; info.style.width = '100%'; info.style.textAlign = 'center'; container.appendChild( info ); camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 10000 ); camera.position.set( 500, 800, 1300 ); camera.lookAt( new THREE.Vector3() ); scene = new THREE.Scene(); // roll-over helpers rollOverGeo = new THREE.BoxGeometry( 50, 50, 50 ); rollOverMaterial = new THREE.MeshBasicMaterial( { color: 0xff0000, opacity: 0.5, transparent: true } ); rollOverMesh = new THREE.Mesh( rollOverGeo, rollOverMaterial ); scene.add( rollOverMesh ); // cubes cubeGeo = new THREE.BoxGeometry( 50, 50, 50 ); cubeMaterial = new THREE.MeshLambertMaterial( { color: 0xfeb74c, shading: THREE.FlatShading, map: THREE.ImageUtils.loadTexture( "texture/green.gif" ) } ); // grid var size = 500, step = 50; var geometry = new THREE.Geometry(); for ( var i = - size; i <= size; i += step ) { geometry.vertices.push( new THREE.Vector3( - size, 0, i ) ); geometry.vertices.push( new THREE.Vector3( size, 0, i ) ); geometry.vertices.push( new THREE.Vector3( i, 0, - size ) ); geometry.vertices.push( new THREE.Vector3( i, 0, size ) ); } var material = new THREE.LineBasicMaterial( { color: 0x000000, opacity: 0.2, transparent: true } ); var line = new THREE.LineSegments( geometry, material ); scene.add( line ); // raycaster = new THREE.Raycaster(); mouse = new THREE.Vector2(); var geometry = new THREE.PlaneBufferGeometry( 1000, 1000 ); geometry.rotateX( - Math.PI / 2 ); plane = new THREE.Mesh( geometry, new THREE.MeshBasicMaterial( { visible: false } ) ); scene.add( plane ); objects.push( plane ); // Lights var ambientLight = new THREE.AmbientLight( 0x606060 ); scene.add( ambientLight ); var directionalLight = new THREE.DirectionalLight( 0xffffff ); directionalLight.position.set( 1, 0.75, 0.5 ).normalize(); scene.add( directionalLight ); renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setClearColor( 0xf0f0f0 ); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); document.addEventListener( 'mousemove', onDocumentMouseMove, false ); document.addEventListener( 'mousedown', onDocumentMouseDown, false ); document.addEventListener( 'keydown', onDocumentKeyDown, false ); document.addEventListener( 'keyup', onDocumentKeyUp, false ); // window.addEventListener( 'resize', onWindowResize, false ); } function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize( window.innerWidth, window.innerHeight ); } function onDocumentMouseMove( event ) { event.preventDefault(); mouse.set( ( event.clientX / window.innerWidth ) * 2 - 1, - ( event.clientY / window.innerHeight ) * 2 + 1 ); raycaster.setFromCamera( mouse, camera ); var intersects = raycaster.intersectObjects( objects ); if ( intersects.length > 0 ) { var intersect = intersects[ 0 ]; rollOverMesh.position.copy( intersect.point ).add( intersect.face.normal ); rollOverMesh.position.divideScalar( 50 ).floor().multiplyScalar( 50 ).addScalar( 25 ); } render(); } function onDocumentMouseDown( event ) { event.preventDefault(); mouse.set( ( event.clientX / window.innerWidth ) * 2 - 1, - ( event.clientY / window.innerHeight ) * 2 + 1 ); raycaster.setFromCamera( mouse, camera ); var intersects = raycaster.intersectObjects( objects ); if ( intersects.length > 0 ) { var intersect = intersects[ 0 ]; // delete cube if ( isShiftDown ) { if ( intersect.object != plane ) { scene.remove( intersect.object ); objects.splice( objects.indexOf( intersect.object ), 1 ); } // create cube } else { var voxel = new THREE.Mesh( cubeGeo, cubeMaterial ); voxel.position.copy( intersect.point ).add( intersect.face.normal ); voxel.position.divideScalar( 50 ).floor().multiplyScalar( 50 ).addScalar( 25 ); scene.add( voxel ); objects.push( voxel ); } render(); } } function onDocumentKeyDown( event ) { switch( event.keyCode ) { case 16: isShiftDown = true; break; } } function onDocumentKeyUp( event ) { switch ( event.keyCode ) { case 16: isShiftDown = false; break; } } function render() { renderer.render( scene, camera ); } </script> </body> </html>
bryanesmond/packageLinux
resources/app/app/index.html
HTML
mit
5,766
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_serial_port::assign</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="up" href="../basic_serial_port.html" title="basic_serial_port"> <link rel="prev" href="../basic_serial_port.html" title="basic_serial_port"> <link rel="next" href="assign/overload1.html" title="basic_serial_port::assign (1 of 2 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../basic_serial_port.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../basic_serial_port.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="assign/overload1.html"><img src="../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="asio.reference.basic_serial_port.assign"></a><a class="link" href="assign.html" title="basic_serial_port::assign">basic_serial_port::assign</a> </h4></div></div></div> <p> <a class="indexterm" name="idp118117520"></a> Assign an existing native serial port to the serial port. </p> <pre class="programlisting"><span class="keyword">void</span> <a class="link" href="assign/overload1.html" title="basic_serial_port::assign (1 of 2 overloads)">assign</a><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">native_handle_type</span> <span class="special">&amp;</span> <span class="identifier">native_serial_port</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="assign/overload1.html" title="basic_serial_port::assign (1 of 2 overloads)">more...</a></em></span> <span class="identifier">asio</span><span class="special">::</span><span class="identifier">error_code</span> <a class="link" href="assign/overload2.html" title="basic_serial_port::assign (2 of 2 overloads)">assign</a><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">native_handle_type</span> <span class="special">&amp;</span> <span class="identifier">native_serial_port</span><span class="special">,</span> <span class="identifier">asio</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="assign/overload2.html" title="basic_serial_port::assign (2 of 2 overloads)">more...</a></em></span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../basic_serial_port.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../basic_serial_port.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="assign/overload1.html"><img src="../../../next.png" alt="Next"></a> </div> </body> </html>
otgaard/zap
third_party/asio/doc/asio/reference/basic_serial_port/assign.html
HTML
mit
3,921
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ssl::context_base::options</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="up" href="../ssl__context_base.html" title="ssl::context_base"> <link rel="prev" href="no_tlsv1_2.html" title="ssl::context_base::no_tlsv1_2"> <link rel="next" href="password_purpose.html" title="ssl::context_base::password_purpose"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="no_tlsv1_2.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../ssl__context_base.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="password_purpose.html"><img src="../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="asio.reference.ssl__context_base.options"></a><a class="link" href="options.html" title="ssl::context_base::options">ssl::context_base::options</a> </h4></div></div></div> <p> <a class="indexterm" name="idp175306592"></a> Bitmask type for SSL options. </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="keyword">long</span> <span class="identifier">options</span><span class="special">;</span> </pre> <h6> <a name="asio.reference.ssl__context_base.options.h0"></a> <span><a name="asio.reference.ssl__context_base.options.requirements"></a></span><a class="link" href="options.html#asio.reference.ssl__context_base.options.requirements">Requirements</a> </h6> <p> <span class="emphasis"><em>Header: </em></span><code class="literal">asio/ssl/context_base.hpp</code> </p> <p> <span class="emphasis"><em>Convenience header: </em></span><code class="literal">asio/ssl.hpp</code> </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="no_tlsv1_2.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../ssl__context_base.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="password_purpose.html"><img src="../../../next.png" alt="Next"></a> </div> </body> </html>
otgaard/zap
third_party/asio/doc/asio/reference/ssl__context_base/options.html
HTML
mit
3,168
<div class="row" data-ng-controller="SettingsController" data-settings-type="email" data-sly-use.email="com.nateyolles.sling.publick.components.admin.EmailConfig"> <div class="col-lg-12"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">Email</h3> </div> <div class="panel-body"> <form action="/bin/admin/emailconfig" method="post"> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>SMTP Username</label> <input type="text" name="smtpUsername" data-ng-model="model.smtpUsername" data-ng-init="model.smtpUsername = '${email.smtpUsername}'" class="form-control"> <span class="help-block">The username to access your SMTP server.</span> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>SMTP Password</label> <input type="password" name="smtpPassword" data-ng-model="model.smtpPassword" data-ng-init="model.smtpPassword = '${email.smtpPassword}'" data-ng-focus="clear($event)" class="form-control"> <span class="help-block">The password to access your SMTP server.</span> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>Sender Email</label> <input type="email" name="sender" data-ng-model="model.sender" data-ng-init="model.sender = '${email.sender}'" class="form-control"> <span class="help-block">The email address to send from. (e.g. [email protected])</span> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>Recipient Email</label> <input type="email" name="recipient" data-ng-model="model.recipient" data-ng-init="model.recipient = '${email.recipient}'" class="form-control"> <span class="help-block">The email address to send to. (e.g. [email protected])</span> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>Host</label> <input type="text" name="host" data-ng-model="model.host" data-ng-init="model.host = '${email.host}'" class="form-control"> <span class="help-block">The SMTP host server (e.g. email-smtp.us-west-2.amazonaws.com)</span> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>Port</label> <input type="number" min="0" name="port" data-ng-model="model.port" data-ng-init="model.port = ${email.port || '\'\''}" class="form-control"> <span class="help-block">The SMTP host server port (e.g. 25)</span> </div> </div> </div> <div class="row"> <div class="col-xs-12 form-group"> <button type="submit" class="btn btn-primary" data-ng-click="save($event)" data-sly-attribute.disabled="${!email.authorable && 'disabled'}">Save</button> </div> </div> <div class="row" data-ng-show="status.show"> <div class="col-xs-12"> <div class="alert {{status.type}} alert-dismissible" role="alert"> <button type="button" class="close" aria-label="Close" data-ng-click="hideAlert()"><span aria-hidden="true">&times;</span></button> <strong data-ng-bind="status.header"></strong> <span data-ng-bind="status.message"></span> </div> </div> </div> </form> </div> </div> </div> </div>
dulvac/publick-sling-blog
ui/src/main/resources/jcr_root/libs/publick/components/admin/emailConfig/emailConfig.html
HTML
apache-2.0
5,001
@(branch: String = "", repository: gitbucket.core.service.RepositoryService.RepositoryInfo, hasWritePermission: Boolean)(body: Html)(implicit context: gitbucket.core.controller.Context) @import gitbucket.core.view.helpers @gitbucket.core.helper.html.dropdown( value = if(branch.length == 40) branch.substring(0, 10) else branch, prefix = if(repository.branchList.contains(branch)) "branch" else if (repository.tags.map(_.name).contains(branch)) "tag" else "tree", style = "min-width: 200px;", maxValueWidth = "200px" ) { <li> <ul class="nav nav-tabs"> <li class="active" id="branch-control-tab-branches"><a href="javascript:void(0);" class="nav-item" id="nav-item-branches">Branches</a></li> <li id="branch-control-tab-tags"><a href="javascript:void(0);" class="nav-item" id="nav-item-tags">Tags</a></li> <li><button id="branch-control-close" class="pull-right">&times</button></li> </ul> <li> <input id="branch-control-input" type="text" class="form-control input-sm dropdown-filter-input"/> </li> @body @if(hasWritePermission) { <li id="create-branch" style="display: none;"> <a><form action="@helpers.url(repository)/branches" method="post" style="margin: 0;"> <span class="strong">Create branch:&nbsp;<span class="new-branch"></span></span> <br><span style="padding-left: 17px;">from&nbsp;'@branch'</span> <input type="hidden" name="new"> <input type="hidden" name="from" value="@branch"> </form></a> </li> } </li> } <script> $(function(){ $('#branch-control-input').parent().click(function(e) { e.stopPropagation(); }); $('#branch-control-close').click(function() { $('[data-toggle="dropdown"]').parent().removeClass('open'); }); $('#branch-control-input').keyup(function() { updateBranchControlListFilter(); }); @if(hasWritePermission) { $('#create-branch').click(function() { $(this).find('input[name="new"]').val($('.dropdown-menu input').val()) $(this).find('form').submit() }); } $('.btn-group').click(function() { $('#branch-control-input').val(''); //$('.dropdown-menu li').show(); $('#create-branch').hide(); }); $('#nav-item-branches').click(function(e) { e.stopPropagation(); updateBranchControlList('branches'); }); $('#nav-item-tags').click(function(e) { e.stopPropagation(); updateBranchControlList('tags'); }); function updateBranchControlList(active) { if (active == 'branches') { $('li#branch-control-tab-branches').addClass('active'); $('li#branch-control-tab-tags').removeClass('active'); $('li.branch-control-item-branch').show(); $('li.branch-control-item-branch > a').addClass('active'); $('li.branch-control-item-tag').hide(); $('li.branch-control-item-tag > a').removeClass('active'); @if(hasWritePermission) { $('#branch-control-input').attr('placeholder', 'Find or create branch ...'); } else { $('#branch-control-input').attr('placeholder', 'Find branch ...'); } } else if (active == 'tags') { $('li#branch-control-tab-branches').removeClass('active'); $('li#branch-control-tab-tags').addClass('active'); $('li.branch-control-item-branch').hide(); $('li.branch-control-item-branch > a').removeClass('active'); $('li.branch-control-item-tag').show(); $('li.branch-control-item-tag > a').addClass('active'); $('#branch-control-input').attr('placeholder', 'Find tag ...'); } updateBranchControlListFilter(); } function updateBranchControlListFilter() { const inputVal = $('#branch-control-input').val(); $.each($('#branch-control-input').parent().parent().find('a.active').not('.nav-item'), function(index, elem) { if (!inputVal || !elem.text.trim() || elem.text.trim().toLowerCase().indexOf(inputVal.toLowerCase()) >= 0) { $(elem).parent().show(); } else { $(elem).parent().hide(); } }); if ($('li#branch-control-tab-branches.active').length > 0) { @if(hasWritePermission) { if (inputVal) { $('#create-branch').parent().find('li:last-child').show().find('.new-branch').text(inputVal); } else { $('#create-branch').parent().find('li:last-child').hide(); } } } } // Initialize the branch control list updateBranchControlList('branches'); }); </script>
imeszaros/gitbucket
src/main/twirl/gitbucket/core/helper/branchcontrol.scala.html
HTML
apache-2.0
4,619
<html> <head> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Java Service Wrapper - wrapper.console.flush Property</title> <style media="all" type="text/css"> @import url("./style/wrapper.css"); </style> </head> <body bgcolor="#eeeeff" marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" alink="#023264" vlink="#023264" link="#525D76" text="#000000"> <map name="wrapperLogo"> <area href="http://wrapper.tanukisoftware.org" coords="90,90,88" shape="circle"> </map> <map name="wrapperTitle"> <area href="http://www.tanukisoftware.com" coords="28,32,176,48" shape="rect"> </map> <table cellpadding="0" cellspacing="0" width="100%" border="0"> <tr> <td valign="top" width="180"> <table cellpadding="0" cellspacing="0" width="100%" border="0"> <tr> <td width="180"><img usemap="#wrapperLogo" border="0" height="180" width="180" src="images/WrapperLogo.png"></td> </tr> <tr> <td> <table cellpadding="4" cellspacing="0" width="100%" border="0"> <tr> <td nowrap="true"> <div id="menu"> <script language="JavaScript">//@@MENU_TOP@@</script> <div> <b>Essentials</b> <div> <a href="introduction.html">Introduction</a> </div> <div> <a href="integrate.html">Integration Methods</a> </div> <div> <a href="properties.html">Configuration Properties</a> </div> <div> <a href="launch.html">Launching Your Application</a> </div> <div> <b> &gt;&gt; <a href="donate.html">Show Your Support</a> &lt;&lt; </b> </div> <div> <a href="sponsors.html">Sponsors</a> </div> </div> <div> <b>Documentation</b> <div> <a href="jmx.html">JMX Control</a> </div> <div> <a href="security-model.html">Security Model</a> </div> <div> <a href="example.html">Feature Examples</a> </div> <div> <a href="debugging.html">Debugging Your Application</a> </div> <div> <a href="troubleshooting.html">Troubleshooting</a> </div> <div> <a href="faq.html">FAQ</a> </div> <div> <a href="release-notes.html">Release Notes</a> </div> <div> <a href="history.html">Project History</a> </div> <div> <a href="javadocs.html">Javadocs API</a> </div> <div> <a href="buttons.html">Buttons</a> </div> <div> <a href="authors.html">Authors</a> </div> <div> <a href="license.html">License</a> </div> </div> <div> <b>Download</b> <div> <a href="http://sourceforge.net/project/showfiles.php?group_id=39428&package_id=31591">Binaries</a> </div> <div> <a href="http://sourceforge.net/project/showfiles.php?group_id=39428&package_id=33658">Source Code</a> </div> </div> <div> <b>Get Involved</b> <div> <a href="http://sourceforge.net/projects/wrapper/">Source Forge</a> </div> <div> <a href="http://svn.sourceforge.net/viewvc/wrapper/">Subversion Repository</a> </div> <div> <a href="http://sourceforge.net/tracker/?group_id=39428">Issue Tracking</a> </div> <div> <a href="http://sourceforge.net/mail/?group_id=39428">Mailing Lists and Archives</a> </div> <div> <a href="http://sourceforge.net/forum/?group_id=39428">Forums (Old)</a> </div> </div> </div> <script language="JavaScript">//@@MENU_BOTTOM@@</script> <p> <b>Hosted by:</b> <br> <a href="http://sourceforge.net/projects/wrapper/"><img alt="SourceForge" border="0" height="31" width="88" src="http://sourceforge.net/sflogo.php?group_id=39428"></a> <br> </p> </td> </tr> </table> </td> </tr> </table> </td><td valign="top" width="*"> <table cellpadding="0" cellspacing="0" width="100%" border="0"> <tr> <td colspan="3"><img height="4" src="images/spacer.gif"></td> </tr> <tr> <td align="center" height="90" colspan="2"><a href="http://wrapper.tanukisoftware.org"><img border="0" height="90" width="728" src="images/OfflineAd728x90.png"></a></td><td rowspan="5"><img width="4" src="images/spacer.gif"></td> </tr> <tr> <td height="49" width="435"><img usemap="#wrapperTitle" border="0" height="49" width="435" src="images/WrapperTitle.png"></td><td valign="bottom" align="right" width="*"><a href="donate.html"><img border="0" height="16" width="300" src="images/DonationRequest.png"></a></td> </tr> <tr> <td height="4" colspan="2"><img height="4" width="500" src="images/BorderTop.png"></td> </tr> <tr> <td colspan="2"> <table cellspacing="0" cellpadding="0" width="100%" border="0"> <tr> <td valign="top" width="4"><img height="496" width="4" src="images/BorderLeft.png"></td><td bgcolor="#ffffff" valign="top" width="*" colspan="2"> <table cellpadding="4" cellspacing="0" width="100%" border="0"> <tr> <td nowrap="true" align="center"><font zcolor="#115b77" color="#8888aa" size="5"><b>wrapper.console.flush Property</b></font></td> </tr> <tr> <td> <title>wrapper.console.flush Property</title> <a name="N10009"></a> <table cellpadding="2" cellspacing="0" width="100%" border="0"> <tr> <td bgcolor="#8888aa" class="sectionheader1" width="*"><font color="#eeeeee" size="4"><b>Configuration Property Overview</b></font></td> </tr> <tr> <td><img height="4" width="1" src="./images/spacer.gif"></td> </tr> <tr> <td> <ul> <li> <a href="properties.html">Configuration Property Overview</a> </li> <li> <a href="props-logging.html">Logging Configuration Properties</a> </li> <li> <a href="properties.html#name">Property List by Name</a> </li> </ul> </td> </tr> </table> <a name="N10027"></a> <table cellpadding="2" cellspacing="0" width="100%" border="0"> <tr> <td bgcolor="#8888aa" class="sectionheader1" width="*"><font color="#eeeeee" size="4"><b>wrapper.console.flush</b></font></td> </tr> <tr> <td><img height="4" width="1" src="./images/spacer.gif"></td> </tr> <tr> <td> <p> When set to true causes the Wrapper to implicitly flush stdout after each line of output is sent to the console. For normal operation, this does not appear to be necessary. But users who are piping the console output of the Wrapper process into another application have reported that the console output was not being flushed in real time. Defaults to false. </p> <table cellspacing="0" cellpadding="0" width="100%" border="0" class="listing"> <tr> <td class="listingcaption"><i>Example:</i></td> </tr> <tr> <td bgcolor="#eeeeee" class="listingcell"><font color="#444444"> <pre class="listingpre">wrapper.console.flush=false</pre> </font></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td align="right" id="author"> <p> <i>by Leif Mortenson</i> </p> </td> </tr> </table> <script language="JavaScript">//@@BODY_SECTION@@</script></td><td valign="bottom" width="4"><img height="496" width="4" src="images/BorderRight.png"></td> </tr> </table> </td> </tr> <tr> <td align="right" height="4" colspan="2"><img height="4" width="500" src="images/BorderBottom.png"></td> </tr> </table> </td> </tr> </table> <table cellpadding="2" cellspacing="0" border="0" width="100%"> <tr> <td id="copyright" align="left"><font color="#525D76" size="-1" face="arial,helvetica,sanserif"><i> Copyright &copy;1999-2004 by <a href="http://www.tanukisoftware.com">Tanuki Software</a>. All Rights Reserved. </i></font></td><td align="right"><font color="#525D76" size="-1" face="arial,helvetica,sanserif"><i> last modified: <script language="JavaScript"> document.write(document.lastModified); </script></i></font></td> </tr> </table> </body> </html>
enternoescape/opendct
jsw/windows-x86_64/doc/english/prop-console-flush.html
HTML
apache-2.0
7,575
<!DOCTYPE html> <html lang="en"> <head> <title>How do I enable student peer review for an assignment?</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta content="sakai.assignment" name="description"> <meta content="peer review, peer assessment, peer evaluation" name="search"> <link href="/library/skin/tool_base.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="../css/help.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/skin/morpheus-default/tool.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/js/jquery/featherlight/0.4.0/featherlight.min.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <script src="/library/webjars/jquery/1.12.4/jquery.min.js" type="text/javascript" charset="utf-8"></script><script src="/library/js/jquery/featherlight/0.4.0/featherlight.min.js" type="text/javascript" charset="utf-8"></script><script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $("a[rel^='featherlight']").featherlight({ type: { image:true }, closeOnClick: 'anywhere' }); }); </script> </head> <body> <div id="wrapper"><div id="article-content"> <div id="article-header"><h1 class="article-title">How do I post to a forum topic?</h1></div> <div id="article-description"> <div class="step-instructions screensteps-textblock screensteps-wrapper--introduction screensteps-wrapper"> <p>Forums are organizational units that group topics within the site. You cannot post directly to a forum, you must first enter a topic and post your message there.</p> <p>In order to post to a forum topic, you will<strong> Start a New Conversation </strong>or thread.</p> </div> <div class="step screensteps-section screensteps-depth-1" id="go-to-forums"> <h2 id="go-to-forums" class="step-title screensteps-heading">Go to Forums.</h2> <div class="image screensteps-image"> <img src="https://media.screensteps.com/image_assets/assets/001/178/996/original/d4fc016b-1d81-4468-b910-20a5501af5fe.png" alt="Go to Forums." height="126" width="200"> </div> <div class="step-instructions screensteps-textblock"> <p>Select the <strong>Forums</strong> tool from Tool Menu in your site.</p> </div> </div> <div class="step screensteps-section screensteps-depth-1" id="choose-a-forum"> <h2 id="choose-a-forum" class="step-title screensteps-heading">Choose a forum.</h2> <div class="image screensteps-image"> <img src="https://media.screensteps.com/image_assets/assets/001/179/000/original/a8ef262d-c5ef-4dea-aa5d-736fcb67afd5.png" alt="Choose a forum." height="424" width="835"> </div> <div class="step-instructions screensteps-textblock"> <p>This is an example of a forum. The forum title will appear in bold and in a larger font than the topic titles indented beneath it. If you would like to view more information about the forum, you may click <strong>View Full Description</strong> to view any additional information provided by the site owner.</p> </div> </div> <div class="step screensteps-section screensteps-depth-1" id="select-a-topic-within-the-forum"> <h2 id="select-a-topic-within-the-forum" class="step-title screensteps-heading">Select a topic within the forum.</h2> <div class="image screensteps-image"> <img src="https://media.screensteps.com/image_assets/assets/001/178/998/original/9a037115-5980-4ee8-b668-9aa871dfecd4.png" alt="Select a topic within the forum." height="197" width="812"> </div> <div class="step-instructions screensteps-textblock"> <p>This is an example of a forum topic. </p> <p>Click on the title of the topic to enter that topic.</p> </div> </div> <div class="step screensteps-section screensteps-depth-1" id="click-start-a-new-conversation"> <h2 id="click-start-a-new-conversation" class="step-title screensteps-heading">Click Start a New Conversation.</h2> <div class="image screensteps-image"> <img src="https://media.screensteps.com/image_assets/assets/001/179/002/original/40edb0e1-7b4b-40ef-ad76-3e2ec9b78f5f.png" alt="Click Start a New Conversation." height="398" width="826"> </div> <div class="step-instructions screensteps-textblock"> <p>Starting a new conversation is the same thing as starting a new thread.</p> <p>After you click <strong>Start a New Conversation</strong>, the message composition window will appear.</p> </div> <div class="step screensteps-section screensteps-depth-2" id="enter-a-title"> <h3 id="enter-a-title" class="step-title screensteps-heading">Enter a title.</h3> <div class="image screensteps-image"> <img src="https://media.screensteps.com/image_assets/assets/001/179/010/original/1fdcca81-0c4e-4628-9294-474974e91de3.png" alt="Enter a title." height="73" width="441"> </div> </div> <div class="step screensteps-section screensteps-depth-2" id="enter-a-message"> <h3 id="enter-a-message" class="step-title screensteps-heading">Enter a message.</h3> <div class="image screensteps-image"> <img src="https://media.screensteps.com/image_assets/assets/001/179/008/original/9833c479-24a9-4a81-98b2-b8cff2e49fe5.png" alt="Enter a message." height="375" width="755"> </div> <div class="step-instructions screensteps-textblock"> <p>This description box allows the use of <a rel="nofollow" href="content.hlp?docId=whatistherichtexteditorcopied">Rich Text Editor</a>. </p> <p><em>Note: The message box will keep track of word count in the lower right corner. </em></p> </div> </div> <div class="step screensteps-section screensteps-depth-2" id="click-add-attachments-optional"> <h3 id="click-add-attachments-optional" class="step-title screensteps-heading">Click Add attachments. (Optional)</h3> <div class="image screensteps-image"> <img src="https://media.screensteps.com/image_assets/assets/001/179/004/original/9919dba3-a66c-4e5c-949e-826fd3385647.png" alt="Click Add attachments. (Optional)" height="158" width="816"> </div> <div class="step-instructions screensteps-textblock"> <p>If desired, there is an option to upload attachments to the conversation. Click<strong> Add attachments</strong> to browse for and select your file.</p> </div> </div> </div> <div class="step screensteps-section screensteps-depth-1" id="click-post"> <h2 id="click-post" class="step-title screensteps-heading">Click Post.</h2> <div class="image screensteps-image"> <img src="https://media.screensteps.com/image_assets/assets/001/179/006/original/465761e4-2ccc-435b-9a39-4438b0b6f2ee.png" alt="Click Post." height="50" width="139"> </div> <div class="step-instructions screensteps-textblock"> <p>After completing the conversation, click <strong>Post</strong> to make the conversation viewable.</p> </div> </div> </div> </div></div> </body> </html>
OpenCollabZA/sakai
help/help/src/sakai_screensteps_forumsUserGuide/howdoIposttoaforumtopic.html
HTML
apache-2.0
6,978
<!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_31) on Thu Jan 31 02:05:00 UTC 2013 --> <TITLE> Uses of Class org.apache.hadoop.util.PureJavaCrc32 (Hadoop 1.1.2 API) </TITLE> <META NAME="date" CONTENT="2013-01-31"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.hadoop.util.PureJavaCrc32 (Hadoop 1.1.2 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/util/PureJavaCrc32.html" title="class in org.apache.hadoop.util"><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/util//class-usePureJavaCrc32.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PureJavaCrc32.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.util.PureJavaCrc32</B></H2> </CENTER> No usage of org.apache.hadoop.util.PureJavaCrc32 <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/util/PureJavaCrc32.html" title="class in org.apache.hadoop.util"><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/util//class-usePureJavaCrc32.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PureJavaCrc32.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; 2009 The Apache Software Foundation </BODY> </HTML>
markkerzner/nn_kove
hadoop/docs/api/org/apache/hadoop/util/class-use/PureJavaCrc32.html
HTML
apache-2.0
5,974
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Openfire WebSocket Plugin Readme</title> <style type="text/css"> BODY { font-size : 100%; } BODY, TD, TH { font-family : tahoma, verdana, arial, helvetica, sans-serif; font-size : 0.8em; } H2 { font-size : 10pt; font-weight : bold; } A:hover { text-decoration : none; } H1 { font-family : tahoma, arial, helvetica, sans-serif; font-size : 1.4em; font-weight: bold; border-bottom : 1px #ccc solid; padding-bottom : 2px; } TT { font-family : courier new; font-weight : bold; color : #060; } PRE { font-family : courier new; font-size : 100%; } </style> </head> <body> <h1> Openfire WebSocket Plugin Readme </h1> <h2>Overview</h2> <p> This plugin extends Openfire to support WebSocket. The implementation follows the XMPP WebSocket subprotocol (<a href="https://tools.ietf.org/html/rfc7395">RFC 7395</a>) specification, which is a standard extension of the WebSocket protocol specification (<a href="https://tools.ietf.org/html/rfc6455">RFC 6455</a>). </p> <p> Note that the BOSH (http-bind) capabilities of Openfire must be enabled and correctly configured as a prerequisite before installing this plugin. The WebSocket servlet is installed within the same context as the BOSH component, and will reuse the same HTTP/S port(s) when establishing the WebSocket connection. </p> <h2>Installation</h2> <p>Copy websocket.jar into the plugins directory of your Openfire installation. The plugin will then be automatically deployed. To upgrade to a new version, copy the new websocket.jar file over the existing file.</p> <p> Upon installation, the WebSocket URI path will be /ws/ on the same server/port as the BOSH connector. To establish a secure WebSocket, modify the following URL as appropriate: </p> <pre> wss://your.openfire.host:7443/ws/ </pre> <h2>Configuration</h2> <p> The WebSocket plugin implements the Stream Management (<a href="http://xmpp.org/extensions/xep-0198.html">XEP-0198</a>) "ack" capabilities introduced with Openfire 4.0. This provides assurance for XMPP packet delivery by allowing the peers to agree on the number of stanzas exchanged. Two system properties are available to configure this feature: </p> <dl> <dt><pre>stream.management.active</pre></dt> <dd>Boolean property to enable/disable stream management (default: true)</dd> <dt><pre>stream.management.unsolicitedAckFrequency</pre></dt> <dd>Integer property indicating frequency of unsolicited ack's from the server to the client (default: 0)</dd> </dl> <p> XEP-0198 allows either party (client or server) to send unsolicited ack/answer stanzas on a periodic basis. This implementation approximates BOSH ack behavior by sending unsolicited <a /> stanzas from the server to the client after a configurable number of stanzas have been received from the client. </p> <p> Setting the system property to "1" would indicate that each client packet should be ack'd by the server when stream management is enabled for a particular stream. To disable unsolicited server acks, use the default value for system property "stream.management.unsolicitedAckFrequency" ("0"). This setting does not affect server responses to explicit ack requests from the client. </p> </body> </html>
zhouluoyang/openfire
src/plugins/websocket/readme.html
HTML
apache-2.0
3,571
<!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>ByChained</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="ByChained"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="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/openqa/selenium/support/pagefactory/ByAll.html" title="class in org.openqa.selenium.support.pagefactory"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/openqa/selenium/support/pagefactory/DefaultElementLocator.html" title="class in org.openqa.selenium.support.pagefactory"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/openqa/selenium/support/pagefactory/ByChained.html" target="_top">Frames</a></li> <li><a href="ByChained.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested.classes.inherited.from.class.org.openqa.selenium.By">Nested</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.openqa.selenium.support.pagefactory</div> <h2 title="Class ByChained" class="title">Class ByChained</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">org.openqa.selenium.By</a></li> <li> <ul class="inheritance"> <li>org.openqa.selenium.support.pagefactory.ByChained</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable</dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">ByChained</span> extends <a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">By</a> implements java.io.Serializable</pre> <div class="block">Mechanism used to locate elements within a document using a series of other lookups. This class will find all DOM elements that matches each of the locators in sequence, e.g. <pre> driver.findElements(new ByChained(by1, by2)) </pre> will find all elements that match <var>by2</var> and appear under an element that matches <var>by1</var>.</div> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../serialized-form.html#org.openqa.selenium.support.pagefactory.ByChained">Serialized Form</a></dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested.class.summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <ul class="blockList"> <li class="blockList"><a name="nested.classes.inherited.from.class.org.openqa.selenium.By"> <!-- --> </a> <h3>Nested classes/interfaces inherited from class&nbsp;org.openqa.selenium.<a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">By</a></h3> <code><a href="../../../../../org/openqa/selenium/By.ByClassName.html" title="class in org.openqa.selenium">By.ByClassName</a>, <a href="../../../../../org/openqa/selenium/By.ByCssSelector.html" title="class in org.openqa.selenium">By.ByCssSelector</a>, <a href="../../../../../org/openqa/selenium/By.ById.html" title="class in org.openqa.selenium">By.ById</a>, <a href="../../../../../org/openqa/selenium/By.ByLinkText.html" title="class in org.openqa.selenium">By.ByLinkText</a>, <a href="../../../../../org/openqa/selenium/By.ByName.html" title="class in org.openqa.selenium">By.ByName</a>, <a href="../../../../../org/openqa/selenium/By.ByPartialLinkText.html" title="class in org.openqa.selenium">By.ByPartialLinkText</a>, <a href="../../../../../org/openqa/selenium/By.ByTagName.html" title="class in org.openqa.selenium">By.ByTagName</a>, <a href="../../../../../org/openqa/selenium/By.ByXPath.html" title="class in org.openqa.selenium">By.ByXPath</a></code></li> </ul> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/openqa/selenium/support/pagefactory/ByChained.html#ByChained-org.openqa.selenium.By...-">ByChained</a></span>(<a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">By</a>...&nbsp;bys)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../../org/openqa/selenium/WebElement.html" title="interface in org.openqa.selenium">WebElement</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/openqa/selenium/support/pagefactory/ByChained.html#findElement-org.openqa.selenium.SearchContext-">findElement</a></span>(<a href="../../../../../org/openqa/selenium/SearchContext.html" title="interface in org.openqa.selenium">SearchContext</a>&nbsp;context)</code> <div class="block">Find a single element.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>java.util.List&lt;<a href="../../../../../org/openqa/selenium/WebElement.html" title="interface in org.openqa.selenium">WebElement</a>&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/openqa/selenium/support/pagefactory/ByChained.html#findElements-org.openqa.selenium.SearchContext-">findElements</a></span>(<a href="../../../../../org/openqa/selenium/SearchContext.html" title="interface in org.openqa.selenium">SearchContext</a>&nbsp;context)</code> <div class="block">Find many elements.</div> </td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/openqa/selenium/support/pagefactory/ByChained.html#toString--">toString</a></span>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.org.openqa.selenium.By"> <!-- --> </a> <h3>Methods inherited from class&nbsp;org.openqa.selenium.<a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">By</a></h3> <code><a href="../../../../../org/openqa/selenium/By.html#className-java.lang.String-">className</a>, <a href="../../../../../org/openqa/selenium/By.html#cssSelector-java.lang.String-">cssSelector</a>, <a href="../../../../../org/openqa/selenium/By.html#equals-java.lang.Object-">equals</a>, <a href="../../../../../org/openqa/selenium/By.html#hashCode--">hashCode</a>, <a href="../../../../../org/openqa/selenium/By.html#id-java.lang.String-">id</a>, <a href="../../../../../org/openqa/selenium/By.html#linkText-java.lang.String-">linkText</a>, <a href="../../../../../org/openqa/selenium/By.html#name-java.lang.String-">name</a>, <a href="../../../../../org/openqa/selenium/By.html#partialLinkText-java.lang.String-">partialLinkText</a>, <a href="../../../../../org/openqa/selenium/By.html#tagName-java.lang.String-">tagName</a>, <a href="../../../../../org/openqa/selenium/By.html#xpath-java.lang.String-">xpath</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, finalize, getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="ByChained-org.openqa.selenium.By...-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ByChained</h4> <pre>public&nbsp;ByChained(<a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">By</a>...&nbsp;bys)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="findElement-org.openqa.selenium.SearchContext-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>findElement</h4> <pre>public&nbsp;<a href="../../../../../org/openqa/selenium/WebElement.html" title="interface in org.openqa.selenium">WebElement</a>&nbsp;findElement(<a href="../../../../../org/openqa/selenium/SearchContext.html" title="interface in org.openqa.selenium">SearchContext</a>&nbsp;context)</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../../org/openqa/selenium/By.html#findElement-org.openqa.selenium.SearchContext-">By</a></code></span></div> <div class="block">Find a single element. Override this method if necessary.</div> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="../../../../../org/openqa/selenium/By.html#findElement-org.openqa.selenium.SearchContext-">findElement</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">By</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>context</code> - A context to use to find the element</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The WebElement that matches the selector</dd> </dl> </li> </ul> <a name="findElements-org.openqa.selenium.SearchContext-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>findElements</h4> <pre>public&nbsp;java.util.List&lt;<a href="../../../../../org/openqa/selenium/WebElement.html" title="interface in org.openqa.selenium">WebElement</a>&gt;&nbsp;findElements(<a href="../../../../../org/openqa/selenium/SearchContext.html" title="interface in org.openqa.selenium">SearchContext</a>&nbsp;context)</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../../org/openqa/selenium/By.html#findElements-org.openqa.selenium.SearchContext-">By</a></code></span></div> <div class="block">Find many elements.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../../org/openqa/selenium/By.html#findElements-org.openqa.selenium.SearchContext-">findElements</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">By</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>context</code> - A context to use to find the element</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>A list of WebElements matching the selector</dd> </dl> </li> </ul> <a name="toString--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>toString</h4> <pre>public&nbsp;java.lang.String&nbsp;toString()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="../../../../../org/openqa/selenium/By.html#toString--">toString</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../org/openqa/selenium/By.html" title="class in org.openqa.selenium">By</a></code></dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/openqa/selenium/support/pagefactory/ByAll.html" title="class in org.openqa.selenium.support.pagefactory"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/openqa/selenium/support/pagefactory/DefaultElementLocator.html" title="class in org.openqa.selenium.support.pagefactory"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/openqa/selenium/support/pagefactory/ByChained.html" target="_top">Frames</a></li> <li><a href="ByChained.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested.classes.inherited.from.class.org.openqa.selenium.By">Nested</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
misttechnologies/selenium
docs/api/java/org/openqa/selenium/support/pagefactory/ByChained.html
HTML
apache-2.0
17,281
<!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_31) on Thu Jan 31 02:05:00 UTC 2013 --> <TITLE> Uses of Class org.apache.hadoop.util.ProcessTree.Signal (Hadoop 1.1.2 API) </TITLE> <META NAME="date" CONTENT="2013-01-31"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.hadoop.util.ProcessTree.Signal (Hadoop 1.1.2 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util"><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/util//class-useProcessTree.Signal.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ProcessTree.Signal.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.util.ProcessTree.Signal</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/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.mapred"><B>org.apache.hadoop.mapred</B></A></TD> <TD>A software framework for easily writing applications which process vast amounts of data (multi-terabyte data-sets) parallelly on large clusters (thousands of nodes) built of commodity hardware in a reliable, fault-tolerant manner.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.util"><B>org.apache.hadoop.util</B></A></TD> <TD>Common utilities.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.mapred"><!-- --></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/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A> in <A HREF="../../../../../org/apache/hadoop/mapred/package-summary.html">org.apache.hadoop.mapred</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/mapred/package-summary.html">org.apache.hadoop.mapred</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>abstract &nbsp;void</CODE></FONT></TD> <TD><CODE><B>TaskController.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/TaskController.html#signalTask(java.lang.String, int, org.apache.hadoop.util.ProcessTree.Signal)">signalTask</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;user, int&nbsp;taskPid, <A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A>&nbsp;signal)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Send a signal to a task pid as the user.</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>DefaultTaskController.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/DefaultTaskController.html#signalTask(java.lang.String, int, org.apache.hadoop.util.ProcessTree.Signal)">signalTask</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;user, int&nbsp;taskPid, <A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A>&nbsp;signal)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.util"><!-- --></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/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A> in <A HREF="../../../../../org/apache/hadoop/util/package-summary.html">org.apache.hadoop.util</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/util/package-summary.html">org.apache.hadoop.util</A> that return <A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A></CODE></FONT></TD> <TD><CODE><B>ProcessTree.Signal.</B><B><A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html#valueOf(java.lang.String)">valueOf</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;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the enum constant of this type with the specified name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A>[]</CODE></FONT></TD> <TD><CODE><B>ProcessTree.Signal.</B><B><A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html#values()">values</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an array containing the constants of this enum type, in the order they are declared.</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/util/package-summary.html">org.apache.hadoop.util</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ProcessTree.</B><B><A HREF="../../../../../org/apache/hadoop/util/ProcessTree.html#killProcess(java.lang.String, org.apache.hadoop.util.ProcessTree.Signal)">killProcess</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;pid, <A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A>&nbsp;signal)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sends signal to process, forcefully terminating the process.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ProcessTree.</B><B><A HREF="../../../../../org/apache/hadoop/util/ProcessTree.html#killProcessGroup(java.lang.String, org.apache.hadoop.util.ProcessTree.Signal)">killProcessGroup</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;pgrpId, <A HREF="../../../../../org/apache/hadoop/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util">ProcessTree.Signal</A>&nbsp;signal)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sends signal to all process belonging to same process group, forcefully terminating the process group.</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/util/ProcessTree.Signal.html" title="enum in org.apache.hadoop.util"><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/util//class-useProcessTree.Signal.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ProcessTree.Signal.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; 2009 The Apache Software Foundation </BODY> </HTML>
markkerzner/nn_kove
hadoop/docs/api/org/apache/hadoop/util/class-use/ProcessTree.Signal.html
HTML
apache-2.0
13,765
<!DOCTYPE html> <html lang="en-us"> <head> <meta charset="utf-8"> <!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">--> <title> SmartAdmin </title> <meta name="description" content=""> <meta name="author" content=""> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- Basic Styles --> <link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" media="screen" href="css/font-awesome.min.css"> <!-- SmartAdmin Styles : Please note (smartadmin-production.css) was created using LESS variables --> <link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-production.min.css"> <link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-skins.min.css"> <!-- SmartAdmin RTL Support is under construction This RTL CSS will be released in version 1.5 <link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-rtl.min.css"> --> <!-- We recommend you use "your_style.css" to override SmartAdmin specific styles this will also ensure you retrain your customization with each SmartAdmin update. <link rel="stylesheet" type="text/css" media="screen" href="css/your_style.css"> --> <!-- Demo purpose only: goes with demo.js, you can delete this css when designing your own WebApp --> <link rel="stylesheet" type="text/css" media="screen" href="css/demo.min.css"> <!-- FAVICONS --> <link rel="shortcut icon" href="img/favicon/favicon.ico" type="image/x-icon"> <link rel="icon" href="img/favicon/favicon.ico" type="image/x-icon"> <!-- GOOGLE FONT --> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,300,400,700"> <!-- Specifying a Webpage Icon for Web Clip Ref: https://developer.apple.com/library/ios/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html --> <link rel="apple-touch-icon" href="img/splash/sptouch-icon-iphone.png"> <link rel="apple-touch-icon" sizes="76x76" href="img/splash/touch-icon-ipad.png"> <link rel="apple-touch-icon" sizes="120x120" href="img/splash/touch-icon-iphone-retina.png"> <link rel="apple-touch-icon" sizes="152x152" href="img/splash/touch-icon-ipad-retina.png"> <!-- iOS web-app metas : hides Safari UI Components and Changes Status Bar Appearance --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <!-- Startup image for web apps --> <link rel="apple-touch-startup-image" href="img/splash/ipad-landscape.png" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape)"> <link rel="apple-touch-startup-image" href="img/splash/ipad-portrait.png" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait)"> <link rel="apple-touch-startup-image" href="img/splash/iphone.png" media="screen and (max-device-width: 320px)"> </head> <body class=""> <!-- possible classes: minified, fixed-ribbon, fixed-header, fixed-width--> <!-- HEADER --> <header id="header"> <div id="logo-group"> <!-- PLACE YOUR LOGO HERE --> <span id="logo"> <img src="img/logo.png" alt="SmartAdmin"> </span> <!-- END LOGO PLACEHOLDER --> <!-- Note: The activity badge color changes when clicked and resets the number to 0 Suggestion: You may want to set a flag when this happens to tick off all checked messages / notifications --> <span id="activity" class="activity-dropdown"> <i class="fa fa-user"></i> <b class="badge"> 21 </b> </span> <!-- AJAX-DROPDOWN : control this dropdown height, look and feel from the LESS variable file --> <div class="ajax-dropdown"> <!-- the ID links are fetched via AJAX to the ajax container "ajax-notifications" --> <div class="btn-group btn-group-justified" data-toggle="buttons"> <label class="btn btn-default"> <input type="radio" name="activity" id="ajax/notify/mail.html"> Msgs (14) </label> <label class="btn btn-default"> <input type="radio" name="activity" id="ajax/notify/notifications.html"> notify (3) </label> <label class="btn btn-default"> <input type="radio" name="activity" id="ajax/notify/tasks.html"> Tasks (4) </label> </div> <!-- notification content --> <div class="ajax-notifications custom-scroll"> <div class="alert alert-transparent"> <h4>Click a button to show messages here</h4> This blank page message helps protect your privacy, or you can show the first message here automatically. </div> <i class="fa fa-lock fa-4x fa-border"></i> </div> <!-- end notification content --> <!-- footer: refresh area --> <span> Last updated on: 12/12/2013 9:43AM <button type="button" data-loading-text="<i class='fa fa-refresh fa-spin'></i> Loading..." class="btn btn-xs btn-default pull-right"> <i class="fa fa-refresh"></i> </button> </span> <!-- end footer --> </div> <!-- END AJAX-DROPDOWN --> </div> <!-- projects dropdown --> <div class="project-context hidden-xs"> <span class="label">Projects:</span> <span class="project-selector dropdown-toggle" data-toggle="dropdown">Recent projects <i class="fa fa-angle-down"></i></span> <!-- Suggestion: populate this list with fetch and push technique --> <ul class="dropdown-menu"> <li> <a href="javascript:void(0);">Online e-merchant management system - attaching integration with the iOS</a> </li> <li> <a href="javascript:void(0);">Notes on pipeline upgradee</a> </li> <li> <a href="javascript:void(0);">Assesment Report for merchant account</a> </li> <li class="divider"></li> <li> <a href="javascript:void(0);"><i class="fa fa-power-off"></i> Clear</a> </li> </ul> <!-- end dropdown-menu--> </div> <!-- end projects dropdown --> <!-- pulled right: nav area --> <div class="pull-right"> <!-- collapse menu button --> <div id="hide-menu" class="btn-header pull-right"> <span> <a href="javascript:void(0);" data-action="toggleMenu" title="Collapse Menu"><i class="fa fa-reorder"></i></a> </span> </div> <!-- end collapse menu --> <!-- #MOBILE --> <!-- Top menu profile link : this shows only when top menu is active --> <ul id="mobile-profile-img" class="header-dropdown-list hidden-xs padding-5"> <li class=""> <a href="#" class="dropdown-toggle no-margin userdropdown" data-toggle="dropdown"> <img src="img/avatars/sunny.png" alt="John Doe" class="online" /> </a> <ul class="dropdown-menu pull-right"> <li> <a href="javascript:void(0);" class="padding-10 padding-top-0 padding-bottom-0"><i class="fa fa-cog"></i> Setting</a> </li> <li class="divider"></li> <li> <a href="profile.html" class="padding-10 padding-top-0 padding-bottom-0"> <i class="fa fa-user"></i> <u>P</u>rofile</a> </li> <li class="divider"></li> <li> <a href="javascript:void(0);" class="padding-10 padding-top-0 padding-bottom-0" data-action="toggleShortcut"><i class="fa fa-arrow-down"></i> <u>S</u>hortcut</a> </li> <li class="divider"></li> <li> <a href="javascript:void(0);" class="padding-10 padding-top-0 padding-bottom-0" data-action="launchFullscreen"><i class="fa fa-arrows-alt"></i> Full <u>S</u>creen</a> </li> <li class="divider"></li> <li> <a href="login.html" class="padding-10 padding-top-5 padding-bottom-5" data-action="userLogout"><i class="fa fa-sign-out fa-lg"></i> <strong><u>L</u>ogout</strong></a> </li> </ul> </li> </ul> <!-- logout button --> <div id="logout" class="btn-header transparent pull-right"> <span> <a href="login.html" title="Sign Out" data-action="userLogout" data-logout-msg="You can improve your security further after logging out by closing this opened browser"><i class="fa fa-sign-out"></i></a> </span> </div> <!-- end logout button --> <!-- search mobile button (this is hidden till mobile view port) --> <div id="search-mobile" class="btn-header transparent pull-right"> <span> <a href="javascript:void(0)" title="Search"><i class="fa fa-search"></i></a> </span> </div> <!-- end search mobile button --> <!-- input: search field --> <form action="search.html" class="header-search pull-right"> <input id="search-fld" type="text" name="param" placeholder="Find reports and more" data-autocomplete='[ "ActionScript", "AppleScript", "Asp", "BASIC", "C", "C++", "Clojure", "COBOL", "ColdFusion", "Erlang", "Fortran", "Groovy", "Haskell", "Java", "JavaScript", "Lisp", "Perl", "PHP", "Python", "Ruby", "Scala", "Scheme"]'> <button type="submit"> <i class="fa fa-search"></i> </button> <a href="javascript:void(0);" id="cancel-search-js" title="Cancel Search"><i class="fa fa-times"></i></a> </form> <!-- end input: search field --> <!-- fullscreen button --> <div id="fullscreen" class="btn-header transparent pull-right"> <span> <a href="javascript:void(0);" data-action="launchFullscreen" title="Full Screen"><i class="fa fa-arrows-alt"></i></a> </span> </div> <!-- end fullscreen button --> <!-- #Voice Command: Start Speech --> <div id="speech-btn" class="btn-header transparent pull-right hidden-sm hidden-xs"> <div> <a href="javascript:void(0)" title="Voice Command" data-action="voiceCommand"><i class="fa fa-microphone"></i></a> <div class="popover bottom"><div class="arrow"></div> <div class="popover-content"> <h4 class="vc-title">Voice command activated <br><small>Please speak clearly into the mic</small></h4> <h4 class="vc-title-error text-center"> <i class="fa fa-microphone-slash"></i> Voice command failed <br><small class="txt-color-red">Must <strong>"Allow"</strong> Microphone</small> <br><small class="txt-color-red">Must have <strong>Internet Connection</strong></small> </h4> <a href="javascript:void(0);" class="btn btn-success" onclick="commands.help()">See Commands</a> <a href="javascript:void(0);" class="btn bg-color-purple txt-color-white" onclick="$('#speech-btn .popover').fadeOut(50);">Close Popup</a> </div> </div> </div> </div> <!-- end voice command --> <!-- multiple lang dropdown : find all flags in the flags page --> <ul class="header-dropdown-list hidden-xs"> <li> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <img src="img/blank.gif" class="flag flag-us" alt="United States"> <span> English (US) </span> <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu pull-right"> <li class="active"> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-us" alt="United States"> English (US)</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-fr" alt="France"> Français</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-es" alt="Spanish"> Español</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-de" alt="German"> Deutsch</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-jp" alt="Japan"> 日本語</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-cn" alt="China"> 中文</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-it" alt="Italy"> Italiano</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-pt" alt="Portugal"> Portugal</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-ru" alt="Russia"> Русский язык</a> </li> <li> <a href="javascript:void(0);"><img src="img/blank.gif" class="flag flag-kp" alt="Korea"> 한국어</a> </li> </ul> </li> </ul> <!-- end multiple lang --> </div> <!-- end pulled right: nav area --> </header> <!-- END HEADER --> <!-- Left panel : Navigation area --> <!-- Note: This width of the aside area can be adjusted through LESS variables --> <aside id="left-panel"> <!-- User info --> <div class="login-info"> <span> <!-- User image size is adjusted inside CSS, it should stay as it --> <a href="javascript:void(0);" id="show-shortcut" data-action="toggleShortcut"> <img src="img/avatars/sunny.png" alt="me" class="online" /> <span> john.doe </span> <i class="fa fa-angle-down"></i> </a> </span> </div> <!-- end user info --> <!-- NAVIGATION : This navigation is also responsive To make this navigation dynamic please make sure to link the node (the reference to the nav > ul) after page load. Or the navigation will not initialize. --> <nav> <!-- NOTE: Notice the gaps after each icon usage <i></i>.. Please note that these links work a bit different than traditional href="" links. See documentation for details. --> <ul> <li> <a href="index.html" title="Dashboard"><i class="fa fa-lg fa-fw fa-home"></i> <span class="menu-item-parent">Dashboard</span></a> </li> <li> <a href="inbox.html"><i class="fa fa-lg fa-fw fa-inbox"></i> <span class="menu-item-parent">Inbox</span><span class="badge pull-right inbox-badge">14</span></a> </li> <li> <a href="#"><i class="fa fa-lg fa-fw fa-bar-chart-o"></i> <span class="menu-item-parent">Graphs</span></a> <ul> <li> <a href="flot.html">Flot Chart</a> </li> <li> <a href="morris.html">Morris Charts</a> </li> <li> <a href="inline-charts.html">Inline Charts</a> </li> <li> <a href="dygraphs.html">Dygraphs <span class="badge pull-right inbox-badge bg-color-yellow">new</span></a> </li> </ul> </li> <li> <a href="#"><i class="fa fa-lg fa-fw fa-table"></i> <span class="menu-item-parent">Tables</span></a> <ul> <li> <a href="table.html">Normal Tables</a> </li> <li> <a href="datatables.html">Data Tables <span class="badge inbox-badge bg-color-greenLight">v1.10</span></a> </li> <li> <a href="jqgrid.html">Jquery Grid</a> </li> </ul> </li> <li> <a href="#"><i class="fa fa-lg fa-fw fa-pencil-square-o"></i> <span class="menu-item-parent">Forms</span></a> <ul> <li> <a href="form-elements.html">Smart Form Elements</a> </li> <li> <a href="form-templates.html">Smart Form Layouts</a> </li> <li> <a href="validation.html">Smart Form Validation</a> </li> <li> <a href="bootstrap-forms.html">Bootstrap Form Elements</a> </li> <li> <a href="plugins.html">Form Plugins</a> </li> <li> <a href="wizard.html">Wizards</a> </li> <li> <a href="other-editors.html">Bootstrap Editors</a> </li> <li> <a href="dropzone.html">Dropzone </a> </li> <li> <a href="image-editor.html">Image Cropping <span class="badge pull-right inbox-badge bg-color-yellow">new</span></a> </li> </ul> </li> <li> <a href="#"><i class="fa fa-lg fa-fw fa-desktop"></i> <span class="menu-item-parent">UI Elements</span></a> <ul> <li> <a href="general-elements.html">General Elements</a> </li> <li> <a href="buttons.html">Buttons</a> </li> <li> <a href="#">Icons</a> <ul> <li> <a href="fa.html"><i class="fa fa-plane"></i> Font Awesome</a> </li> <li> <a href="glyph.html"><i class="glyphicon glyphicon-plane"></i> Glyph Icons</a> </li> <li> <a href="flags.html"><i class="fa fa-flag"></i> Flags</a> </li> </ul> </li> <li> <a href="grid.html">Grid</a> </li> <li> <a href="treeview.html">Tree View</a> </li> <li> <a href="nestable-list.html">Nestable Lists</a> </li> <li> <a href="jqui.html">JQuery UI</a> </li> <li> <a href="typography.html">Typography</a> </li> <li> <a href="#">Six Level Menu</a> <ul> <li> <a href="#"><i class="fa fa-fw fa-folder-open"></i> Item #2</a> <ul> <li> <a href="#"><i class="fa fa-fw fa-folder-open"></i> Sub #2.1 </a> <ul> <li> <a href="#"><i class="fa fa-fw fa-file-text"></i> Item #2.1.1</a> </li> <li> <a href="#"><i class="fa fa-fw fa-plus"></i> Expand</a> <ul> <li> <a href="#"><i class="fa fa-fw fa-file-text"></i> File</a> </li> <li> <a href="#"><i class="fa fa-fw fa-trash-o"></i> Delete</a></li> </ul> </li> </ul> </li> </ul> </li> <li> <a href="#"><i class="fa fa-fw fa-folder-open"></i> Item #3</a> <ul> <li> <a href="#"><i class="fa fa-fw fa-folder-open"></i> 3ed Level </a> <ul> <li> <a href="#"><i class="fa fa-fw fa-file-text"></i> File</a> </li> <li> <a href="#"><i class="fa fa-fw fa-file-text"></i> File</a> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> <li> <a href="calendar.html"><i class="fa fa-lg fa-fw fa-calendar"><em>3</em></i> <span class="menu-item-parent">Calendar</span></a> </li> <li> <a href="widgets.html"><i class="fa fa-lg fa-fw fa-list-alt"></i> <span class="menu-item-parent">Widgets</span></a> </li> <li> <a href="gallery.html"><i class="fa fa-lg fa-fw fa-picture-o"></i> <span class="menu-item-parent">Gallery</span></a> </li> <li> <a href="gmap-xml.html"><i class="fa fa-lg fa-fw fa-map-marker"></i> <span class="menu-item-parent">GMap Skins</span><span class="badge bg-color-greenLight pull-right inbox-badge">9</span></a> </li> <li class="active"> <a href="#"><i class="fa fa-lg fa-fw fa-windows"></i> <span class="menu-item-parent">Miscellaneous</span></a> <ul> <li class="active"> <a href="#"><i class="fa fa-lg fa-fw fa-file"></i> Other Pages</a> <ul> <li> <a href="forum.html">Forum Layout</a> </li> <li class="active"> <a href="profile.html">Profile</a> </li> <li> <a href="timeline.html">Timeline</a> </li> </ul> </li> <li> <a href="pricing-table.html">Pricing Tables</a> </li> <li> <a href="invoice.html">Invoice</a> </li> <li> <a href="login.html" target="_top">Login</a> </li> <li> <a href="register.html" target="_top">Register</a> </li> <li> <a href="lock.html" target="_top">Locked Screen</a> </li> <li> <a href="error404.html">Error 404</a> </li> <li> <a href="error500.html">Error 500</a> </li> <li> <a href="blank_.html">Blank Page</a> </li> <li> <a href="email-template.html">Email Template</a> </li> <li> <a href="search.html">Search Page</a> </li> <li> <a href="ckeditor.html">CK Editor</a> </li> </ul> </li> <li class="top-menu-hidden"> <a href="#"><i class="fa fa-lg fa-fw fa-cube txt-color-blue"></i> <span class="menu-item-parent">SmartAdmin Intel</span></a> <ul> <li> <a href="difver.html"><i class="fa fa-stack-overflow"></i> Different Versions</a> </li> <li> <a href="applayout.html"><i class="fa fa-cube"></i> App Settings</a> </li> <li> <a href="http://bootstraphunter.com/smartadmin/BUGTRACK/track_/documentation/index.html" target="_blank"><i class="fa fa-book"></i> Documentation</a> </li> <li> <a href="http://bootstraphunter.com/smartadmin/BUGTRACK/track_/" target="_blank"><i class="fa fa-bug"></i> Bug Tracker</a> </li> </ul> </li> </ul> </nav> <span class="minifyme" data-action="minifyMenu"> <i class="fa fa-arrow-circle-left hit"></i> </span> </aside> <!-- END NAVIGATION --> <!-- MAIN PANEL --> <div id="main" role="main"> <!-- RIBBON --> <div id="ribbon"> <span class="ribbon-button-alignment"> <span id="refresh" class="btn btn-ribbon" data-action="resetWidgets" data-title="refresh" rel="tooltip" data-placement="bottom" data-original-title="<i class='text-warning fa fa-warning'></i> Warning! This will reset all your widget settings." data-html="true"> <i class="fa fa-refresh"></i> </span> </span> <!-- breadcrumb --> <ol class="breadcrumb"> <li>Home</li><li>Miscellaneous</li><li>Other Pages</li><li>Profile</li> </ol> <!-- end breadcrumb --> <!-- You can also add more buttons to the ribbon for further usability Example below: <span class="ribbon-button-alignment pull-right"> <span id="search" class="btn btn-ribbon hidden-xs" data-title="search"><i class="fa-grid"></i> Change Grid</span> <span id="add" class="btn btn-ribbon hidden-xs" data-title="add"><i class="fa-plus"></i> Add</span> <span id="search" class="btn btn-ribbon" data-title="search"><i class="fa-search"></i> <span class="hidden-mobile">Search</span></span> </span> --> </div> <!-- END RIBBON --> <!-- MAIN CONTENT --> <div id="content"> <!-- Bread crumb is created dynamically --> <!-- row --> <div class="row"> <!-- col --> <div class="col-xs-12 col-sm-7 col-md-7 col-lg-4"> <h1 class="page-title txt-color-blueDark"><!-- PAGE HEADER --><i class="fa-fw fa fa-file-o"></i> Other Pages <span>> Profile </span></h1> </div> <!-- end col --> <!-- right side of the page with the sparkline graphs --> <!-- col --> <div class="col-xs-12 col-sm-5 col-md-5 col-lg-8"> <!-- sparks --> <ul id="sparks"> <li class="sparks-info"> <h5> My Income <span class="txt-color-blue">$47,171</span></h5> <div class="sparkline txt-color-blue hidden-mobile hidden-md hidden-sm"> 1300, 1877, 2500, 2577, 2000, 2100, 3000, 2700, 3631, 2471, 2700, 3631, 2471 </div> </li> <li class="sparks-info"> <h5> Site Traffic <span class="txt-color-purple"><i class="fa fa-arrow-circle-up" data-rel="bootstrap-tooltip" title="Increased"></i>&nbsp;45%</span></h5> <div class="sparkline txt-color-purple hidden-mobile hidden-md hidden-sm"> 110,150,300,130,400,240,220,310,220,300, 270, 210 </div> </li> <li class="sparks-info"> <h5> Site Orders <span class="txt-color-greenDark"><i class="fa fa-shopping-cart"></i>&nbsp;2447</span></h5> <div class="sparkline txt-color-greenDark hidden-mobile hidden-md hidden-sm"> 110,150,300,130,400,240,220,310,220,300, 270, 210 </div> </li> </ul> <!-- end sparks --> </div> <!-- end col --> </div> <!-- end row --> <!-- row --> <div class="row"> <div class="col-sm-12"> <div class="well well-sm"> <div class="row"> <div class="col-sm-12 col-md-12 col-lg-6"> <div class="well well-light well-sm no-margin no-padding"> <div class="row"> <div class="col-sm-12"> <div id="myCarousel" class="carousel fade profile-carousel"> <div class="air air-bottom-right padding-10"> <a href="javascript:void(0);" class="btn txt-color-white bg-color-teal btn-sm"><i class="fa fa-check"></i> Follow</a>&nbsp; <a href="javascript:void(0);" class="btn txt-color-white bg-color-pinkDark btn-sm"><i class="fa fa-link"></i> Connect</a> </div> <div class="air air-top-left padding-10"> <h4 class="txt-color-white font-md">Jan 1, 2014</h4> </div> <ol class="carousel-indicators"> <li data-target="#myCarousel" data-slide-to="0" class="active"></li> <li data-target="#myCarousel" data-slide-to="1" class=""></li> <li data-target="#myCarousel" data-slide-to="2" class=""></li> </ol> <div class="carousel-inner"> <!-- Slide 1 --> <div class="item active"> <img src="img/demo/s1.jpg" alt="demo user"> </div> <!-- Slide 2 --> <div class="item"> <img src="img/demo/s2.jpg" alt="demo user"> </div> <!-- Slide 3 --> <div class="item"> <img src="img/demo/m3.jpg" alt="demo user"> </div> </div> </div> </div> <div class="col-sm-12"> <div class="row"> <div class="col-sm-3 profile-pic"> <img src="img/avatars/sunny-big.png" alt="demo user"> <div class="padding-10"> <h4 class="font-md"><strong>1,543</strong> <br> <small>Followers</small></h4> <br> <h4 class="font-md"><strong>419</strong> <br> <small>Connections</small></h4> </div> </div> <div class="col-sm-6"> <h1>John <span class="semi-bold">Doe</span> <br> <small> CEO, SmartAdmin</small></h1> <ul class="list-unstyled"> <li> <p class="text-muted"> <i class="fa fa-phone"></i>&nbsp;&nbsp;(<span class="txt-color-darken">313</span>) <span class="txt-color-darken">464</span> - <span class="txt-color-darken">6473</span> </p> </li> <li> <p class="text-muted"> <i class="fa fa-envelope"></i>&nbsp;&nbsp;<a href="mailto:simmons@smartadmin">[email protected]</a> </p> </li> <li> <p class="text-muted"> <i class="fa fa-skype"></i>&nbsp;&nbsp;<span class="txt-color-darken">john12</span> </p> </li> <li> <p class="text-muted"> <i class="fa fa-calendar"></i>&nbsp;&nbsp;<span class="txt-color-darken">Free after <a href="javascript:void(0);" rel="tooltip" title="" data-placement="top" data-original-title="Create an Appointment">4:30 PM</a></span> </p> </li> </ul> <br> <p class="font-md"> <i>A little about me...</i> </p> <p> Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere </p> <br> <a href="javascript:void(0);" class="btn btn-default btn-xs"><i class="fa fa-envelope-o"></i> Send Message</a> <br> <br> </div> <div class="col-sm-3"> <h1><small>Connections</small></h1> <ul class="list-inline friends-list"> <li><img src="img/avatars/1.png" alt="friend-1"> </li> <li><img src="img/avatars/2.png" alt="friend-2"> </li> <li><img src="img/avatars/3.png" alt="friend-3"> </li> <li><img src="img/avatars/4.png" alt="friend-4"> </li> <li><img src="img/avatars/5.png" alt="friend-5"> </li> <li><img src="img/avatars/male.png" alt="friend-6"> </li> <li> <a href="javascript:void(0);">413 more</a> </li> </ul> <h1><small>Recent visitors</small></h1> <ul class="list-inline friends-list"> <li><img src="img/avatars/male.png" alt="friend-1"> </li> <li><img src="img/avatars/female.png" alt="friend-2"> </li> <li><img src="img/avatars/female.png" alt="friend-3"> </li> </ul> </div> </div> </div> </div> <div class="row"> <div class="col-sm-12"> <hr> <div class="padding-10"> <ul class="nav nav-tabs tabs-pull-right"> <li class="active"> <a href="#a1" data-toggle="tab">Recent Articles</a> </li> <li> <a href="#a2" data-toggle="tab">New Members</a> </li> <li class="pull-left"> <span class="margin-top-10 display-inline"><i class="fa fa-rss text-success"></i> Activity</span> </li> </ul> <div class="tab-content padding-top-10"> <div class="tab-pane fade in active" id="a1"> <div class="row"> <div class="col-xs-2 col-sm-1"> <time datetime="2014-09-20" class="icon"> <strong>Jan</strong> <span>10</span> </time> </div> <div class="col-xs-10 col-sm-11"> <h6 class="no-margin"><a href="javascript:void(0);">Allice in Wonderland</a></h6> <p> Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel. </p> </div> <div class="col-sm-12"> <hr> </div> <div class="col-xs-2 col-sm-1"> <time datetime="2014-09-20" class="icon"> <strong>Jan</strong> <span>10</span> </time> </div> <div class="col-xs-10 col-sm-11"> <h6 class="no-margin"><a href="javascript:void(0);">World Report</a></h6> <p> Morning our be dry. Life also third land after first beginning to evening cattle created let subdue you'll winged don't Face firmament. You winged you're was Fruit divided signs lights i living cattle yielding over light life life sea, so deep. Abundantly given years bring were after. Greater you're meat beast creeping behold he unto She'd doesn't. Replenish brought kind gathering Meat. </p> </div> <div class="col-sm-12"> <br> </div> </div> </div> <div class="tab-pane fade" id="a2"> <div class="alert alert-info fade in"> <button class="close" data-dismiss="alert"> × </button> <i class="fa-fw fa fa-info"></i> <strong>51 new members </strong>joined today! </div> <div class="user" title="[email protected]"> <img src="img/avatars/female.png" alt="demo user"><a href="javascript:void(0);">Jenn Wilson</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Marshall Hitt</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Joe Cadena</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Mike McBride</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Travis Wilson</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Marshall Hitt</a> <div class="email"> [email protected] </div> </div> <div class="user" title="Joe Cadena [email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Joe Cadena</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Mike McBride</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Marshall Hitt</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);">Joe Cadena</a> <div class="email"> [email protected] </div> </div> <div class="user" title="[email protected]"> <img src="img/avatars/male.png" alt="demo user"><a href="javascript:void(0);"> Mike McBride</a> <div class="email"> [email protected] </div> </div> <div class="text-center"> <ul class="pagination pagination-sm"> <li class="disabled"> <a href="javascript:void(0);">Prev</a> </li> <li class="active"> <a href="javascript:void(0);">1</a> </li> <li> <a href="javascript:void(0);">2</a> </li> <li> <a href="javascript:void(0);">3</a> </li> <li> <a href="javascript:void(0);">...</a> </li> <li> <a href="javascript:void(0);">99</a> </li> <li> <a href="javascript:void(0);">Next</a> </li> </ul> </div> </div><!-- end tab --> </div> </div> </div> </div> <!-- end row --> </div> </div> <div class="col-sm-12 col-md-12 col-lg-6"> <form method="post" class="well padding-bottom-10" onsubmit="return false;"> <textarea rows="2" class="form-control" placeholder="What are you thinking?"></textarea> <div class="margin-top-10"> <button type="submit" class="btn btn-sm btn-primary pull-right"> Post </button> <a href="javascript:void(0);" class="btn btn-link profile-link-btn" rel="tooltip" data-placement="bottom" title="Add Location"><i class="fa fa-location-arrow"></i></a> <a href="javascript:void(0);" class="btn btn-link profile-link-btn" rel="tooltip" data-placement="bottom" title="Add Voice"><i class="fa fa-microphone"></i></a> <a href="javascript:void(0);" class="btn btn-link profile-link-btn" rel="tooltip" data-placement="bottom" title="Add Photo"><i class="fa fa-camera"></i></a> <a href="javascript:void(0);" class="btn btn-link profile-link-btn" rel="tooltip" data-placement="bottom" title="Add File"><i class="fa fa-file"></i></a> </div> </form> <div class="timeline-seperator text-center"> <span>10:30PM January 1st, 2013</span> <div class="btn-group pull-right"> <a href="javascript:void(0);" data-toggle="dropdown" class="btn btn-default btn-xs dropdown-toggle"><span class="caret single"></span></a> <ul class="dropdown-menu text-left"> <li> <a href="javascript:void(0);">Hide this post</a> </li> <li> <a href="javascript:void(0);">Hide future posts from this user</a> </li> <li> <a href="javascript:void(0);">Mark as spam</a> </li> </ul> </div> </div> <div class="chat-body no-padding profile-message"> <ul> <li class="message"> <img src="img/avatars/sunny.png" class="online" alt="sunny"> <span class="message-text"> <a href="javascript:void(0);" class="username">John Doe <small class="text-muted pull-right ultra-light"> 2 Minutes ago </small></a> Can't divide were divide fish forth fish to. Was can't form the, living life grass darkness very image let unto fowl isn't in blessed fill life yielding above all moved </span> <ul class="list-inline font-xs"> <li> <a href="javascript:void(0);" class="text-info"><i class="fa fa-reply"></i> Reply</a> </li> <li> <a href="javascript:void(0);" class="text-danger"><i class="fa fa-thumbs-up"></i> Like</a> </li> <li> <a href="javascript:void(0);" class="text-muted">Show All Comments (14)</a> </li> <li> <a href="javascript:void(0);" class="text-primary">Edit</a> </li> <li> <a href="javascript:void(0);" class="text-danger">Delete</a> </li> </ul> </li> <li class="message message-reply"> <img src="img/avatars/3.png" class="online" alt="user"> <span class="message-text"> <a href="javascript:void(0);" class="username">Serman Syla</a> Haha! Yeah I know what you mean. Thanks for the file Sadi! <i class="fa fa-smile-o txt-color-orange"></i> </span> <ul class="list-inline font-xs"> <li> <a href="javascript:void(0);" class="text-muted">1 minute ago </a> </li> <li> <a href="javascript:void(0);" class="text-danger"><i class="fa fa-thumbs-up"></i> Like</a> </li> </ul> </li> <li class="message message-reply"> <img src="img/avatars/4.png" class="online" alt="user"> <span class="message-text"> <a href="javascript:void(0);" class="username">Sadi Orlaf </a> Haha! Yeah I know what you mean. Thanks for the file Sadi! <i class="fa fa-smile-o txt-color-orange"></i> </span> <ul class="list-inline font-xs"> <li> <a href="javascript:void(0);" class="text-muted">a moment ago </a> </li> <li> <a href="javascript:void(0);" class="text-danger"><i class="fa fa-thumbs-up"></i> Like</a> </li> </ul> <input class="form-control input-xs" placeholder="Type and enter" type="text"> </li> </ul> </div> <div class="timeline-seperator text-center"> <span>11:30PM November 27th, 2013</span> <div class="btn-group pull-right"> <a href="javascript:void(0);" data-toggle="dropdown" class="btn btn-default btn-xs dropdown-toggle"><span class="caret single"></span></a> <ul class="dropdown-menu text-left"> <li> <a href="javascript:void(0);">Hide this post</a> </li> <li> <a href="javascript:void(0);">Hide future posts from this user</a> </li> <li> <a href="javascript:void(0);">Mark as spam</a> </li> </ul> </div> </div> <div class="chat-body no-padding profile-message"> <ul> <li class="message"> <img src="img/avatars/1.png" class="online" alt="user"> <span class="message-text"> <a href="javascript:void(0);" class="username">John Doe <small class="text-muted pull-right ultra-light"> 2 Minutes ago </small></a> Can't divide were divide fish forth fish to. Was can't form the, living life grass darkness very image let unto fowl isn't in blessed fill life yielding above all moved </span> <ul class="list-inline font-xs"> <li> <a href="javascript:void(0);" class="text-info"><i class="fa fa-reply"></i> Reply</a> </li> <li> <a href="javascript:void(0);" class="text-danger"><i class="fa fa-thumbs-up"></i> Like</a> </li> <li> <a href="javascript:void(0);" class="text-muted">Show All Comments (14)</a> </li> <li> <a href="javascript:void(0);" class="text-primary">Hide</a> </li> </ul> </li> <li class="message message-reply"> <img src="img/avatars/3.png" class="online" alt="user"> <span class="message-text"> <a href="javascript:void(0);" class="username">Serman Syla</a> Haha! Yeah I know what you mean. Thanks for the file Sadi! <i class="fa fa-smile-o txt-color-orange"></i> </span> <ul class="list-inline font-xs"> <li> <a href="javascript:void(0);" class="text-muted">1 minute ago </a> </li> <li> <a href="javascript:void(0);" class="text-danger"><i class="fa fa-thumbs-up"></i> Like</a> </li> </ul> </li> <li class="message message-reply"> <img src="img/avatars/4.png" class="online" alt="user"> <span class="message-text"> <a href="javascript:void(0);" class="username">Sadi Orlaf </a> Haha! Yeah I know what you mean. Thanks for the file Sadi! <i class="fa fa-smile-o txt-color-orange"></i> </span> <ul class="list-inline font-xs"> <li> <a href="javascript:void(0);" class="text-muted">a moment ago </a> </li> <li> <a href="javascript:void(0);" class="text-danger"><i class="fa fa-thumbs-up"></i> Like</a> </li> </ul> </li> <li class="message message-reply"> <img src="img/avatars/4.png" class="online" alt="user"> <span class="message-text"> <a href="javascript:void(0);" class="username">Sadi Orlaf </a> Haha! Yeah I know what you mean. Thanks for the file Sadi! <i class="fa fa-smile-o txt-color-orange"></i> </span> <ul class="list-inline font-xs"> <li> <a href="javascript:void(0);" class="text-muted">a moment ago </a> </li> <li> <a href="javascript:void(0);" class="text-danger"><i class="fa fa-thumbs-up"></i> Like</a> </li> </ul> </li> <li> <div class="input-group wall-comment-reply"> <input id="btn-input" type="text" class="form-control" placeholder="Type your message here..."> <span class="input-group-btn"> <button class="btn btn-primary" id="btn-chat"> <i class="fa fa-reply"></i> Reply </button> </span> </div> </li> </ul> </div> </div> </div> </div> </div> </div> <!-- end row --> </div> <!-- END MAIN CONTENT --> </div> <!-- END MAIN PANEL --> <!-- PAGE FOOTER --> <div class="page-footer"> <div class="row"> <div class="col-xs-12 col-sm-6"> <span class="txt-color-white">SmartAdmin WebApp © 2013-2014</span> </div> <div class="col-xs-6 col-sm-6 text-right hidden-xs"> <div class="txt-color-white inline-block"> <i class="txt-color-blueLight hidden-mobile">Last account activity <i class="fa fa-clock-o"></i> <strong>52 mins ago &nbsp;</strong> </i> <div class="btn-group dropup"> <button class="btn btn-xs dropdown-toggle bg-color-blue txt-color-white" data-toggle="dropdown"> <i class="fa fa-link"></i> <span class="caret"></span> </button> <ul class="dropdown-menu pull-right text-left"> <li> <div class="padding-5"> <p class="txt-color-darken font-sm no-margin">Download Progress</p> <div class="progress progress-micro no-margin"> <div class="progress-bar progress-bar-success" style="width: 50%;"></div> </div> </div> </li> <li class="divider"></li> <li> <div class="padding-5"> <p class="txt-color-darken font-sm no-margin">Server Load</p> <div class="progress progress-micro no-margin"> <div class="progress-bar progress-bar-success" style="width: 20%;"></div> </div> </div> </li> <li class="divider"></li> <li> <div class="padding-5"> <p class="txt-color-darken font-sm no-margin">Memory Load <span class="text-danger">*critical*</span></p> <div class="progress progress-micro no-margin"> <div class="progress-bar progress-bar-danger" style="width: 70%;"></div> </div> </div> </li> <li class="divider"></li> <li> <div class="padding-5"> <button class="btn btn-block btn-default">refresh</button> </div> </li> </ul> </div> </div> </div> </div> </div> <!-- END PAGE FOOTER --> <!-- SHORTCUT AREA : With large tiles (activated via clicking user name tag) Note: These tiles are completely responsive, you can add as many as you like --> <div id="shortcut"> <ul> <li> <a href="#inbox.html" class="jarvismetro-tile big-cubes bg-color-blue"> <span class="iconbox"> <i class="fa fa-envelope fa-4x"></i> <span>Mail <span class="label pull-right bg-color-darken">14</span></span> </span> </a> </li> <li> <a href="#calendar.html" class="jarvismetro-tile big-cubes bg-color-orangeDark"> <span class="iconbox"> <i class="fa fa-calendar fa-4x"></i> <span>Calendar</span> </span> </a> </li> <li> <a href="#gmap-xml.html" class="jarvismetro-tile big-cubes bg-color-purple"> <span class="iconbox"> <i class="fa fa-map-marker fa-4x"></i> <span>Maps</span> </span> </a> </li> <li> <a href="#invoice.html" class="jarvismetro-tile big-cubes bg-color-blueDark"> <span class="iconbox"> <i class="fa fa-book fa-4x"></i> <span>Invoice <span class="label pull-right bg-color-darken">99</span></span> </span> </a> </li> <li> <a href="#gallery.html" class="jarvismetro-tile big-cubes bg-color-greenLight"> <span class="iconbox"> <i class="fa fa-picture-o fa-4x"></i> <span>Gallery </span> </span> </a> </li> <li> <a href="javascript:void(0);" class="jarvismetro-tile big-cubes selected bg-color-pinkDark"> <span class="iconbox"> <i class="fa fa-user fa-4x"></i> <span>My Profile </span> </span> </a> </li> </ul> </div> <!-- END SHORTCUT AREA --> <!--================================================== --> <!-- PACE LOADER - turn this on if you want ajax loading to show (caution: uses lots of memory on iDevices)--> <script data-pace-options='{ "restartOnRequestAfter": true }' src="js/plugin/pace/pace.min.js"></script> <!-- Link to Google CDN's jQuery + jQueryUI; fall back to local --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> <script> if (!window.jQuery) { document.write('<script src="js/libs/jquery-2.0.2.min.js"><\/script>'); } </script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script> <script> if (!window.jQuery.ui) { document.write('<script src="js/libs/jquery-ui-1.10.3.min.js"><\/script>'); } </script> <!-- IMPORTANT: APP CONFIG --> <script src="js/app.config.js"></script> <!-- JS TOUCH : include this plugin for mobile drag / drop touch events--> <script src="js/plugin/jquery-touch/jquery.ui.touch-punch.min.js"></script> <!-- BOOTSTRAP JS --> <script src="js/bootstrap/bootstrap.min.js"></script> <!-- CUSTOM NOTIFICATION --> <script src="js/notification/SmartNotification.min.js"></script> <!-- JARVIS WIDGETS --> <script src="js/smartwidgets/jarvis.widget.min.js"></script> <!-- EASY PIE CHARTS --> <script src="js/plugin/easy-pie-chart/jquery.easy-pie-chart.min.js"></script> <!-- SPARKLINES --> <script src="js/plugin/sparkline/jquery.sparkline.min.js"></script> <!-- JQUERY VALIDATE --> <script src="js/plugin/jquery-validate/jquery.validate.min.js"></script> <!-- JQUERY MASKED INPUT --> <script src="js/plugin/masked-input/jquery.maskedinput.min.js"></script> <!-- JQUERY SELECT2 INPUT --> <script src="js/plugin/select2/select2.min.js"></script> <!-- JQUERY UI + Bootstrap Slider --> <script src="js/plugin/bootstrap-slider/bootstrap-slider.min.js"></script> <!-- browser msie issue fix --> <script src="js/plugin/msie-fix/jquery.mb.browser.min.js"></script> <!-- FastClick: For mobile devices --> <script src="js/plugin/fastclick/fastclick.min.js"></script> <!--[if IE 8]> <h1>Your browser is out of date, please update your browser by going to www.microsoft.com/download</h1> <![endif]--> <!-- Demo purpose only --> <script src="js/demo.min.js"></script> <!-- MAIN APP JS FILE --> <script src="js/app.min.js"></script> <!-- ENHANCEMENT PLUGINS : NOT A REQUIREMENT --> <!-- Voice command : plugin --> <script src="js/speech/voicecommand.min.js"></script> <!-- PAGE RELATED PLUGIN(S) <script src="..."></script>--> <script type="text/javascript"> // DO NOT REMOVE : GLOBAL FUNCTIONS! $(document).ready(function() { pageSetUp(); }) </script> <!-- Your GOOGLE ANALYTICS CODE Below --> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXXXXX-X']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </body> </html>
networksoft/erp.roshlife
template/profile.html
HTML
apache-2.0
53,385
<!doctype html><html lang=en><head><title>Redirecting&mldr;</title><link rel=canonical href=/v1.9/news/releases/1.0.x/announcing-1.0.9/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=/v1.9/news/releases/1.0.x/announcing-1.0.9/"></head><body><h1>Redirecting&mldr;</h1><a href=/v1.9/news/releases/1.0.x/announcing-1.0.9/>Click here if you are not redirected.</a></body></html>
istio/istio.io
archive/v1.9/news/announcing-1.0.9/index.html
HTML
apache-2.0
424
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example60-production</title> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.27/angular.min.js"></script> </head> <body ng-app=""> <button ng-dblclick="count = count + 1" ng-init="count=0"> Increment (on double click) </button> count: {{count}} </body> </html>
tesjin/yii2-angularjs
docs/examples/example-example60/index-production.html
HTML
bsd-3-clause
384
<!DOCTYPE html> <html> <head> <script src="../../resources/js-test.js"></script> <script src="resources/common.js"></script> </head> <body> <p id="description"></p> <div id="console"></div> <script> description("Test generating an EC key pair for ECDH."); jsTestIsAsync = true; var algorithmKeyGen = { name: "ecdh", namedCurve: "P-256", }; var extractable = true; debug("Generating a key pair..."); crypto.subtle.generateKey(algorithmKeyGen, extractable, ["deriveBits"]).then(function(result) { keyPair = result; shouldBe("keyPair.toString()", "'[object Object]'"); shouldBe("keyPair.publicKey.type", "'public'"); shouldBe("keyPair.publicKey.algorithm.name", "'ECDH'"); shouldBe("keyPair.publicKey.algorithm.namedCurve", "'P-256'"); shouldBe("keyPair.publicKey.usages", '[]'); shouldBe("keyPair.privateKey.type", "'private'"); shouldBe("keyPair.privateKey.algorithm.name", "'ECDH'"); shouldBe("keyPair.privateKey.algorithm.namedCurve", "'P-256'"); shouldBe("keyPair.privateKey.usages", '["deriveBits"]'); debug("\nTesting that custom attributes on keys survive garbage collection..."); keyPair.publicKey.foo = "bar"; gc(); setTimeout(function() { gc(); setTimeout(function() { shouldBe("keyPair.publicKey.foo", "'bar'"); finishJSTest(); }, 0); }, 0); }).catch(failAndFinishJSTest); </script> </body> </html>
nwjs/blink
LayoutTests/crypto/subtle/ecdh-generate-key.html
HTML
bsd-3-clause
1,431
<!doctype html> <!-- This file is generated by build.py. --> <title>object wide.jpg; overflow:hidden; -o-object-fit:contain; -o-object-position:left top</title> <link rel="stylesheet" href="../../support/reftests.css"> <link rel='match' href='hidden_contain_left_top-ref.html'> <style> #test > * { overflow:hidden; -o-object-fit:contain; -o-object-position:left top } </style> <div id="test"> <object data="../../support/wide.jpg"></object> </div>
frivoal/presto-testo
css/image-fit/reftests/object-jpg-wide/hidden_contain_left_top.html
HTML
bsd-3-clause
450
<!doctype html> <!-- This file is generated by build.py. --> <title>canvas; overflow:hidden; -o-object-fit:contain; -o-object-position:center top</title> <link rel="stylesheet" href="../../support/reftests.css"> <link rel='match' href='hidden_contain_50_0-ref.html'> <style> #test > * { overflow:hidden; -o-object-fit:contain; -o-object-position:center top } </style> <div id="test"> <canvas width=148 height=222></canvas> </div> <script> var c = document.querySelector('canvas').getContext('2d'); var w = c.canvas.width / 2, h = c.canvas.height / 2; c.fillStyle = 'blue'; c.fillRect(0, 0, w, h); c.fillRect(w, h, w, h); c.fillStyle = 'purple'; c.fillRect(w, 0, w, h); c.fillRect(0, h, w, h); </script>
frivoal/presto-testo
css/image-fit/reftests/canvas-tall/hidden_contain_center_top.html
HTML
bsd-3-clause
705
<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=koi8-u"> <title>KOI8-U</title> </head> <body> <table> <tr><th> <th>0<th>1<th>2<th>3<th>4<th>5<th>6<th>7<th>8<th>9<th>A<th>B<th>C<th>D<th>E<th>F <tr><th>80<td>€<td><td>‚<td>ƒ<td>„<td>…<td>†<td>‡<td>ˆ<td>‰<td>Š<td>‹<td>Œ<td><td>Ž<td> <tr><th>90<td><td>‘<td>’<td>“<td>”<td>•<td>–<td>—<td>˜<td>™<td>š<td>›<td>œ<td><td>ž<td>Ÿ <tr><th>A0<td> <td>¡<td>¢<td>£<td>¤<td>¥<td>¦<td>§<td>¨<td>©<td>ª<td>«<td>¬<td>­<td>®<td>¯ <tr><th>B0<td>°<td>±<td>²<td>³<td>´<td>µ<td>¶<td>·<td>¸<td>¹<td>º<td>»<td>¼<td>½<td>¾<td>¿ <tr><th>C0<td>À<td>Á<td>Â<td>Ã<td>Ä<td>Å<td>Æ<td>Ç<td>È<td>É<td>Ê<td>Ë<td>Ì<td>Í<td>Î<td>Ï <tr><th>D0<td>Ð<td>Ñ<td>Ò<td>Ó<td>Ô<td>Õ<td>Ö<td>×<td>Ø<td>Ù<td>Ú<td>Û<td>Ü<td>Ý<td>Þ<td>ß <tr><th>E0<td>à<td>á<td>â<td>ã<td>ä<td>å<td>æ<td>ç<td>è<td>é<td>ê<td>ë<td>ì<td>í<td>î<td>ï <tr><th>F0<td>ð<td>ñ<td>ò<td>ó<td>ô<td>õ<td>ö<td>÷<td>ø<td>ù<td>ú<td>û<td>ü<td>ý<td>þ<td>ÿ </table> </body> </html>
frivoal/presto-testo
imported/peter/unicode/tables/koi8-u.html
HTML
bsd-3-clause
1,010
{% extends "impala/base_shared.html" %} {% block bodyclass %}collections{% endblock %} {% block content %} <section class="secondary"> {% include "bandwagon/impala/collection_sidebar.html" %} </section> {% block primary %}{% endblock %} {% endblock %}
lavish205/olympia
src/olympia/bandwagon/templates/bandwagon/impala/base_collection.html
HTML
bsd-3-clause
265
<!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --><html><head><link rel="import" href="../polymer/polymer.html"> <link rel="import" href="../iron-resizable-behavior/iron-resizable-behavior.html"> <link rel="import" href="../iron-selector/iron-selectable.html"> <link rel="import" href="neon-animation-runner-behavior.html"> <link rel="import" href="animations/opaque-animation.html"> <!-- Material design: [Meaningful transitions](https://www.google.com/design/spec/animation/meaningful-transitions.html) `neon-animated-pages` manages a set of pages and runs an animation when switching between them. Its children pages should implement `Polymer.NeonAnimatableBehavior` and define `entry` and `exit` animations to be run when switching to or switching out of the page. @group Neon Elements @element neon-animated-pages @demo demo/index.html --> </head><body><dom-module id="neon-animated-pages"> <style> :host { display: block; position: relative; } :host > ::content > * { position: absolute; top: 0; left: 0; bottom: 0; right: 0; } :host > ::content > :not(.iron-selected):not(.neon-animating) { display: none !important; } :host > ::content > .neon-animating { pointer-events: none; } </style> <template> <content id="content"></content> </template> </dom-module> <script src="neon-animated-pages-extracted.js"></script></body></html>
axinging/chromium-crosswalk
third_party/polymer/v1_0/components-chromium/neon-animation/neon-animated-pages.html
HTML
bsd-3-clause
1,910
{% extends "mod_backend/base_mod_backend.html" %} <!-- @copyright Copyright (c) 2014 Submit Consulting @author Angel Sullon (@asullom) @package sad Descripcion: Create/Update permission --> {% load i18n crispy_forms_tags %} {% load l10n %} {% block breadcrumbs %} <a href="{% url 'accounts:index' %}">{% trans 'Home' %}</a> &rsaquo; <a href="/sad/permission/index/">{{opts.verbose_name_plural|capfirst}}</a> &rsaquo; {{ title }} {% endblock breadcrumbs %} {% block content_title %} {{ opts.verbose_name|capfirst }} | <small>{{ title }}</small> {% endblock content_title %} {% block content %} {% crispy form %} {% endblock %} {% block extrajs %} {{ block.super }} <script type="text/javascript"> </script> {% endblock extrajs %}
tiposaurio/venton
apps/sad/templates/sad/permission_form.html
HTML
bsd-3-clause
749
<html> <head> <script type="text/javascript" src="../dist/webgme.classes.build.js"></script> <script type="text/javascript"> var myInit = function () { console.log('myInit function was called'); // you can use GME.classes.Client from this point console.log(GME); }; </script> <script type="text/javascript"> for (var i = 0; i <= 10000; i += 1) { console.log('dummy loading ' + i); } </script> </head> <body on-gme-init="myInit()"> Test page. See console for messages. </body> </html>
pillforge/webgme
test/test_dist_long_load.html
HTML
mit
592
<!DOCTYPE html> <html lang="en" dir="rtl"> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="mobile-web-app-capable" content="yes"> <meta name="msapplication-tap-highlight" content="no"> <title>ChocolateChip-UI Android</title> <link rel="stylesheet" href="../chui/chui-android-3.9.2.css"> <script src="http://code.jquery.com/jquery-2.1.4.min.js"></script> <script src="../chui/chui-3.9.2.js"></script> <style> div { width: 300px; font: bold 16pt/20pt Helvetica, sans-serif; -webkit-user-select: none; } section label { display: block; margin-bottom: 6px; } section input[type=range] { width: 200px } html[dir=rtl] body.isNativeAndroidBrowser input[type="range"] { width: 200px; } </style> <script> $(function() { $('#rangeValue1').html($('#rangeControl1').val()); // Safari, Chrome and Firefox use "input", // Windows responds to "change": $('#rangeControl1').on('input change', function() { $('#rangeValue1').html($(this).val()); }); $('#rangeValue2').html($('#rangeControl2').val()); // Safari, Chrome and Firefox use "input", // Windows responds to "change": $('#rangeControl2').on('input change', function() { $('#rangeValue2').html($(this).val()); }); }); </script> </head> <body> <nav> <h1>نطاق</h1> </nav> <article id="main" class="current"> <section> <ul class='list'> <li> <h3>زيادة نقطة بنقطة<span></span></h3> <div> <label>القيمة الحالية: <span id='rangeValue1' class='attentionGrapper'></span></label> <input type="range" id="rangeControl1" value="10" min="0" max="40"> </div> </li> </ul> <ul class='list' ui-li-order="stacked" ui-kind='grouped'> <li> <h3>زيادة كل 5 نقطة<span></span></h3> <div> <label>القيمة الحالية: <span id='rangeValue2' class='attentionGrapper'></span></label> <input type="range" id="rangeControl2" step='5' value="20" min="0" max="40"> </div> </li> </ul> </section> </article> </body> </html>
sjolicoeur/chocolatechip-ui
rtl-examples-android/range-control.html
HTML
mit
2,401
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>src\components\Input.ts - Kiwi.js</title> <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css"> <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css"> <link rel="stylesheet" href="../assets/css/main.css" id="site_styles"> <link rel="shortcut icon" type="image/png" href="../assets/favicon.png"> <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script> </head> <body class="yui3-skin-sam"> <div id="doc"> <div id="hd" class="yui3-g header"> <div class="yui3-u-3-4"> <h1><img src="../assets/css/logo.png" title="Kiwi.js"></h1> </div> <div class="yui3-u-1-4 version"> <em>API Docs for: 1.3.0</em> </div> </div> <div id="bd" class="yui3-g"> <div class="yui3-u-1-4"> <div id="docs-sidebar" class="sidebar apidocs"> <div id="api-list"> <h2 class="off-left">APIs</h2> <div id="api-tabview" class="tabview"> <ul class="tabs"> <li><a href="#api-classes">Classes</a></li> <li><a href="#api-modules">Modules</a></li> </ul> <div id="api-tabview-filter"> <input type="search" id="api-filter" placeholder="Type to filter APIs"> </div> <div id="api-tabview-panel"> <ul id="api-classes" class="apis classes"> <li><a href="../classes/Kiwi.Animations.Animation.html">Kiwi.Animations.Animation</a></li> <li><a href="../classes/Kiwi.Animations.Sequence.html">Kiwi.Animations.Sequence</a></li> <li><a href="../classes/Kiwi.Animations.Tween.html">Kiwi.Animations.Tween</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Back.html">Kiwi.Animations.Tweens.Easing.Back</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Bounce.html">Kiwi.Animations.Tweens.Easing.Bounce</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Circular.html">Kiwi.Animations.Tweens.Easing.Circular</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Cubic.html">Kiwi.Animations.Tweens.Easing.Cubic</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Elastic.html">Kiwi.Animations.Tweens.Easing.Elastic</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Exponential.html">Kiwi.Animations.Tweens.Easing.Exponential</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Linear.html">Kiwi.Animations.Tweens.Easing.Linear</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Quadratic.html">Kiwi.Animations.Tweens.Easing.Quadratic</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Quartic.html">Kiwi.Animations.Tweens.Easing.Quartic</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Quintic.html">Kiwi.Animations.Tweens.Easing.Quintic</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.Easing.Sinusoidal.html">Kiwi.Animations.Tweens.Easing.Sinusoidal</a></li> <li><a href="../classes/Kiwi.Animations.Tweens.TweenManager.html">Kiwi.Animations.Tweens.TweenManager</a></li> <li><a href="../classes/Kiwi.Camera.html">Kiwi.Camera</a></li> <li><a href="../classes/Kiwi.CameraManager.html">Kiwi.CameraManager</a></li> <li><a href="../classes/Kiwi.Component.html">Kiwi.Component</a></li> <li><a href="../classes/Kiwi.ComponentManager.html">Kiwi.ComponentManager</a></li> <li><a href="../classes/Kiwi.Components.AnimationManager.html">Kiwi.Components.AnimationManager</a></li> <li><a href="../classes/Kiwi.Components.ArcadePhysics.html">Kiwi.Components.ArcadePhysics</a></li> <li><a href="../classes/Kiwi.Components.Box.html">Kiwi.Components.Box</a></li> <li><a href="../classes/Kiwi.Components.Input.html">Kiwi.Components.Input</a></li> <li><a href="../classes/Kiwi.Components.Sound.html">Kiwi.Components.Sound</a></li> <li><a href="../classes/Kiwi.Entity.html">Kiwi.Entity</a></li> <li><a href="../classes/Kiwi.Files.AudioFile.html">Kiwi.Files.AudioFile</a></li> <li><a href="../classes/Kiwi.Files.DataFile.html">Kiwi.Files.DataFile</a></li> <li><a href="../classes/Kiwi.Files.DataLibrary.html">Kiwi.Files.DataLibrary</a></li> <li><a href="../classes/Kiwi.Files.File.html">Kiwi.Files.File</a></li> <li><a href="../classes/Kiwi.Files.FileStore.html">Kiwi.Files.FileStore</a></li> <li><a href="../classes/Kiwi.Files.Loader.html">Kiwi.Files.Loader</a></li> <li><a href="../classes/Kiwi.Files.TextureFile.html">Kiwi.Files.TextureFile</a></li> <li><a href="../classes/Kiwi.Game.html">Kiwi.Game</a></li> <li><a href="../classes/Kiwi.GameManager.html">Kiwi.GameManager</a></li> <li><a href="../classes/Kiwi.GameObjects.Sprite.html">Kiwi.GameObjects.Sprite</a></li> <li><a href="../classes/Kiwi.GameObjects.StaticImage.html">Kiwi.GameObjects.StaticImage</a></li> <li><a href="../classes/Kiwi.GameObjects.TextField.html">Kiwi.GameObjects.TextField</a></li> <li><a href="../classes/Kiwi.GameObjects.Tilemap.TileMap.html">Kiwi.GameObjects.Tilemap.TileMap</a></li> <li><a href="../classes/Kiwi.GameObjects.Tilemap.TileMapLayer.html">Kiwi.GameObjects.Tilemap.TileMapLayer</a></li> <li><a href="../classes/Kiwi.GameObjects.Tilemap.TileMapLayerIsometric.html">Kiwi.GameObjects.Tilemap.TileMapLayerIsometric</a></li> <li><a href="../classes/Kiwi.GameObjects.Tilemap.TileMapLayerOrthogonal.html">Kiwi.GameObjects.Tilemap.TileMapLayerOrthogonal</a></li> <li><a href="../classes/Kiwi.GameObjects.Tilemap.TileType.html">Kiwi.GameObjects.Tilemap.TileType</a></li> <li><a href="../classes/Kiwi.Geom.AABB.html">Kiwi.Geom.AABB</a></li> <li><a href="../classes/Kiwi.Geom.Circle.html">Kiwi.Geom.Circle</a></li> <li><a href="../classes/Kiwi.Geom.Intersect.html">Kiwi.Geom.Intersect</a></li> <li><a href="../classes/Kiwi.Geom.IntersectResult.html">Kiwi.Geom.IntersectResult</a></li> <li><a href="../classes/Kiwi.Geom.Line.html">Kiwi.Geom.Line</a></li> <li><a href="../classes/Kiwi.Geom.Matrix.html">Kiwi.Geom.Matrix</a></li> <li><a href="../classes/Kiwi.Geom.Point.html">Kiwi.Geom.Point</a></li> <li><a href="../classes/Kiwi.Geom.Ray.html">Kiwi.Geom.Ray</a></li> <li><a href="../classes/Kiwi.Geom.Rectangle.html">Kiwi.Geom.Rectangle</a></li> <li><a href="../classes/Kiwi.Geom.Transform.html">Kiwi.Geom.Transform</a></li> <li><a href="../classes/Kiwi.Geom.Vector2.html">Kiwi.Geom.Vector2</a></li> <li><a href="../classes/Kiwi.Group.html">Kiwi.Group</a></li> <li><a href="../classes/Kiwi.HUD.HUDComponents.Counter.html">Kiwi.HUD.HUDComponents.Counter</a></li> <li><a href="../classes/Kiwi.HUD.HUDComponents.Time.html">Kiwi.HUD.HUDComponents.Time</a></li> <li><a href="../classes/Kiwi.HUD.HUDComponents.WidgetInput.html">Kiwi.HUD.HUDComponents.WidgetInput</a></li> <li><a href="../classes/Kiwi.HUD.HUDDisplay.html">Kiwi.HUD.HUDDisplay</a></li> <li><a href="../classes/Kiwi.HUD.HUDManager.html">Kiwi.HUD.HUDManager</a></li> <li><a href="../classes/Kiwi.HUD.HUDWidget.html">Kiwi.HUD.HUDWidget</a></li> <li><a href="../classes/Kiwi.HUD.Widget.Bar.html">Kiwi.HUD.Widget.Bar</a></li> <li><a href="../classes/Kiwi.HUD.Widget.BasicScore.html">Kiwi.HUD.Widget.BasicScore</a></li> <li><a href="../classes/Kiwi.HUD.Widget.Button.html">Kiwi.HUD.Widget.Button</a></li> <li><a href="../classes/Kiwi.HUD.Widget.Icon.html">Kiwi.HUD.Widget.Icon</a></li> <li><a href="../classes/Kiwi.HUD.Widget.IconBar.html">Kiwi.HUD.Widget.IconBar</a></li> <li><a href="../classes/Kiwi.HUD.Widget.Menu.html">Kiwi.HUD.Widget.Menu</a></li> <li><a href="../classes/Kiwi.HUD.Widget.MenuItem.html">Kiwi.HUD.Widget.MenuItem</a></li> <li><a href="../classes/Kiwi.HUD.Widget.TextField.html">Kiwi.HUD.Widget.TextField</a></li> <li><a href="../classes/Kiwi.HUD.Widget.Time.html">Kiwi.HUD.Widget.Time</a></li> <li><a href="../classes/Kiwi.IChild.html">Kiwi.IChild</a></li> <li><a href="../classes/Kiwi.Input.Finger.html">Kiwi.Input.Finger</a></li> <li><a href="../classes/Kiwi.Input.InputManager.html">Kiwi.Input.InputManager</a></li> <li><a href="../classes/Kiwi.Input.Key.html">Kiwi.Input.Key</a></li> <li><a href="../classes/Kiwi.Input.Keyboard.html">Kiwi.Input.Keyboard</a></li> <li><a href="../classes/Kiwi.Input.Keycodes.html">Kiwi.Input.Keycodes</a></li> <li><a href="../classes/Kiwi.Input.Mouse.html">Kiwi.Input.Mouse</a></li> <li><a href="../classes/Kiwi.Input.MouseCursor.html">Kiwi.Input.MouseCursor</a></li> <li><a href="../classes/Kiwi.Input.Pointer.html">Kiwi.Input.Pointer</a></li> <li><a href="../classes/Kiwi.Input.Touch.html">Kiwi.Input.Touch</a></li> <li><a href="../classes/Kiwi.PluginManager.html">Kiwi.PluginManager</a></li> <li><a href="../classes/Kiwi.Renderers.CanvasRenderer.html">Kiwi.Renderers.CanvasRenderer</a></li> <li><a href="../classes/Kiwi.Renderers.GLArrayBuffer.html">Kiwi.Renderers.GLArrayBuffer</a></li> <li><a href="../classes/Kiwi.Renderers.GLBlendMode.html">Kiwi.Renderers.GLBlendMode</a></li> <li><a href="../classes/Kiwi.Renderers.GLElementArrayBuffer.html">Kiwi.Renderers.GLElementArrayBuffer</a></li> <li><a href="../classes/Kiwi.Renderers.GLRenderManager.html">Kiwi.Renderers.GLRenderManager</a></li> <li><a href="../classes/Kiwi.Renderers.GLTextureManager.html">Kiwi.Renderers.GLTextureManager</a></li> <li><a href="../classes/Kiwi.Renderers.GLTextureWrapper.html">Kiwi.Renderers.GLTextureWrapper</a></li> <li><a href="../classes/Kiwi.Renderers.Renderer.html">Kiwi.Renderers.Renderer</a></li> <li><a href="../classes/Kiwi.Renderers.TextureAtlasRenderer.html">Kiwi.Renderers.TextureAtlasRenderer</a></li> <li><a href="../classes/Kiwi.Shaders.ShaderManager.html">Kiwi.Shaders.ShaderManager</a></li> <li><a href="../classes/Kiwi.Shaders.ShaderPair.html">Kiwi.Shaders.ShaderPair</a></li> <li><a href="../classes/Kiwi.Shaders.TextureAtlasShader.html">Kiwi.Shaders.TextureAtlasShader</a></li> <li><a href="../classes/Kiwi.Signal.html">Kiwi.Signal</a></li> <li><a href="../classes/Kiwi.SignalBinding.html">Kiwi.SignalBinding</a></li> <li><a href="../classes/Kiwi.Sound.Audio.html">Kiwi.Sound.Audio</a></li> <li><a href="../classes/Kiwi.Sound.AudioLibrary.html">Kiwi.Sound.AudioLibrary</a></li> <li><a href="../classes/Kiwi.Sound.AudioManager.html">Kiwi.Sound.AudioManager</a></li> <li><a href="../classes/Kiwi.Stage.html">Kiwi.Stage</a></li> <li><a href="../classes/Kiwi.State.html">Kiwi.State</a></li> <li><a href="../classes/Kiwi.StateConfig.html">Kiwi.StateConfig</a></li> <li><a href="../classes/Kiwi.StateManager.html">Kiwi.StateManager</a></li> <li><a href="../classes/Kiwi.System.Bootstrap.html">Kiwi.System.Bootstrap</a></li> <li><a href="../classes/Kiwi.System.Device.html">Kiwi.System.Device</a></li> <li><a href="../classes/Kiwi.Textures.SingleImage.html">Kiwi.Textures.SingleImage</a></li> <li><a href="../classes/Kiwi.Textures.SpriteSheet.html">Kiwi.Textures.SpriteSheet</a></li> <li><a href="../classes/Kiwi.Textures.TextureAtlas.html">Kiwi.Textures.TextureAtlas</a></li> <li><a href="../classes/Kiwi.Textures.TextureLibrary.html">Kiwi.Textures.TextureLibrary</a></li> <li><a href="../classes/Kiwi.Time.Clock.html">Kiwi.Time.Clock</a></li> <li><a href="../classes/Kiwi.Time.ClockManager.html">Kiwi.Time.ClockManager</a></li> <li><a href="../classes/Kiwi.Time.MasterClock.html">Kiwi.Time.MasterClock</a></li> <li><a href="../classes/Kiwi.Time.Timer.html">Kiwi.Time.Timer</a></li> <li><a href="../classes/Kiwi.Time.TimerEvent.html">Kiwi.Time.TimerEvent</a></li> <li><a href="../classes/Kiwi.Utils.Canvas.html">Kiwi.Utils.Canvas</a></li> <li><a href="../classes/Kiwi.Utils.Color.html">Kiwi.Utils.Color</a></li> <li><a href="../classes/Kiwi.Utils.Common.html">Kiwi.Utils.Common</a></li> <li><a href="../classes/Kiwi.Utils.GameMath.html">Kiwi.Utils.GameMath</a></li> <li><a href="../classes/Kiwi.Utils.Log.html">Kiwi.Utils.Log</a></li> <li><a href="../classes/Kiwi.Utils.RandomDataGenerator.html">Kiwi.Utils.RandomDataGenerator</a></li> <li><a href="../classes/Kiwi.Utils.RequestAnimationFrame.html">Kiwi.Utils.RequestAnimationFrame</a></li> <li><a href="../classes/Kiwi.Utils.Version.html">Kiwi.Utils.Version</a></li> </ul> <ul id="api-modules" class="apis modules"> <li><a href="../modules/Animations.html">Animations</a></li> <li><a href="../modules/Components.html">Components</a></li> <li><a href="../modules/Easing.html">Easing</a></li> <li><a href="../modules/Files.html">Files</a></li> <li><a href="../modules/GameObjects.html">GameObjects</a></li> <li><a href="../modules/Geom.html">Geom</a></li> <li><a href="../modules/HUD.html">HUD</a></li> <li><a href="../modules/HUDComponents.html">HUDComponents</a></li> <li><a href="../modules/Input.html">Input</a></li> <li><a href="../modules/Kiwi.html">Kiwi</a></li> <li><a href="../modules/Renderers.html">Renderers</a></li> <li><a href="../modules/Shaders.html">Shaders</a></li> <li><a href="../modules/Sound.html">Sound</a></li> <li><a href="../modules/System.html">System</a></li> <li><a href="../modules/Textures.html">Textures</a></li> <li><a href="../modules/Tilemap.html">Tilemap</a></li> <li><a href="../modules/Time.html">Time</a></li> <li><a href="../modules/Tweens.html">Tweens</a></li> <li><a href="../modules/Utils.html">Utils</a></li> <li><a href="../modules/Utils..html">Utils.</a></li> <li><a href="../modules/Widget.html">Widget</a></li> </ul> </div> </div> </div> </div> </div> <div class="yui3-u-3-4"> <div id="api-options"> Show: <label for="api-show-inherited"> <input type="checkbox" id="api-show-inherited" checked> Inherited </label> <label for="api-show-protected"> <input type="checkbox" id="api-show-protected"> Protected </label> <label for="api-show-private"> <input type="checkbox" id="api-show-private"> Private </label> <label for="api-show-deprecated"> <input type="checkbox" id="api-show-deprecated"> Deprecated </label> </div> <div class="apidocs"> <div id="docs-main"> <div class="content"> <h1 class="file-heading">File: src\components\Input.ts</h1> <div class="file"> <pre class="code prettyprint linenums"> /** * * @module Kiwi * @submodule Components * */ module Kiwi.Components { /** * The Input Component is used on GameObjects in which the user may interactive with via a Mouse or Touch * and as such this class contains useful methods and callbacks you can subscribe to. * By default the Input component is disabled (this is because when enabled the input component can be process intensive) * but you can enabled it yourself (which is recommened) BUT in case you forget the input component will automagically * be enabled once you access a Signal on this class. * * @class Input * @extends Kiwi.Component * @namespace Kiwi.Components * @constructor * @param owner {Object} The Object that this Component is on. Generally this will be a Entity. * @param box {Kiwi.Components.Box} The box which contains the worldHitbox that is to be used for the event firing. * @param [enabled=false] {boolean} If this input component should be enabled or not. * @return {Kiwi.Components.Input} */ export class Input extends Component { constructor(owner: Kiwi.IChild, box:Kiwi.Components.Box, enabled:boolean=false) { super(owner,&#x27;Input&#x27;); // Signals this._onEntered = new Kiwi.Signal(); this._onLeft = new Kiwi.Signal(); this._onDown = new Kiwi.Signal(); this._onUp = new Kiwi.Signal(); this._onDragStarted = new Kiwi.Signal(); this._onDragStopped = new Kiwi.Signal(); // Properties this._box = box; this._distance = new Kiwi.Geom.Point(); this._withinBounds = null; this._outsideBounds = true; this._isUp = true; this._isDown = null; this._isDragging = null; this._justEntered = false; this._tempDragDisabled = false; this._tempPoint = new Kiwi.Geom.Point(); this._tempCircle = new Kiwi.Geom.Circle(0, 0, 0); this.enabled = enabled; } /** * The type of object this input is. * @method objType * @return {string} &quot;Input&quot; * @public */ public objType() { return &quot;Input&quot;; } /** * The bounding box that is being used for the &#x27;hitarea&#x27;. * @property _box * @type Kiwi.Components.Box * @private */ private _box: Kiwi.Components.Box; /** * Kiwi Signal for firing callbacks when a pointer is active and has entered the entities hitbox. * @property _onEntered * @type Kiwi.Signal * @private */ private _onEntered: Kiwi.Signal; /** * Kiwi Signal for firing callbacks when a pointer is active and has left the entities hit box. * @property _onLeft * @type Kiwi.Signal * @private */ private _onLeft: Kiwi.Signal; /** * Kiwi Signal for firing callbacks when a pointer is active and has pressed down on the entity. * @property _onDown * @type Kiwi.Signal * @private */ private _onDown: Kiwi.Signal; /** * Kiwi Signal for firing callbacks when a pointer just released from either being above the entity or the pointer was initally pressed on it. * @property _onUp * @type Kiwi.Signal * @private */ private _onUp: Kiwi.Signal; /** * Kiwi Signal for firing callbacks a entity starts being dragged. * @property _onDragStarted * @type Kiwi.Signal * @private */ private _onDragStarted: Kiwi.Signal; /** * Kiwi Signal for firing callbacks a entity stops being dragged. Like on release. * @property _onDragStopped * @type Kiwi.Signal * @private */ private _onDragStopped: Kiwi.Signal; /** * A Temporary Point object which is used whilst checking to see if there is any overlap. * @property _tempPoint * @type Kiwi.Geom.Point * @private */ private _tempPoint: Kiwi.Geom.Point; /** * A Temporary Circle object which is used whilst checking to see if there is any overlap. * @property _tempCircle * @type Kiwi.Geom.Circle * @private */ private _tempCircle: Kiwi.Geom.Circle; /** * Returns the onEntered Signal, that fires events when a pointer enters the hitbox of a entity. * Note: Accessing this signal enables the input. * This is READ ONLY. * @property onEntered * @type Kiwi.Signal * @public */ public get onEntered(): Kiwi.Signal { if (this.enabled == false) this.enabled = true; return this._onEntered; } /** * Returns the onLeft Signal, that fires events when a pointer leaves the hitbox of a entity. * Note: Accessing this signal enables the input. * This is READ ONLY. * @property onLeft * @type Kiwi.Signal * @public */ public get onLeft(): Kiwi.Signal { if (this.enabled == false) this.enabled = true; return this._onLeft; } /** * Returns the onDown Signal, that fires events when a pointer is pressed within the bounds of the signal. * Note: Accessing this signal enables the input. * This is READ ONLY. * @property onDown * @type Kiwi.Signal * @public */ public get onDown(): Kiwi.Signal { if (this.enabled == false) this.enabled = true; return this._onDown; } /** * Returns the onUp Signal, that fires events when a pointer is released either within the bounds or was pressed initially within the bounds.. * Note: Accessing this signal enables the input. * This is READ ONLY. * @property onUp * @type Kiwi.Signal * @public */ public get onUp(): Kiwi.Signal { if (this.enabled == false) this.enabled = true; return this._onUp; } /** * Returns the onDragStarted Signal. * This is READ ONLY. * @property onDragStarted * @type Kiwi.Signal * @public */ public get onDragStarted(): Kiwi.Signal { return this._onDragStarted; } /** * Returns the onDragStopped Signal. * This is READ ONLY. * @property onDragStopped * @type Kiwi.Signal * @public */ public get onDragStopped(): Kiwi.Signal { return this._onDragStopped; } /** * A alias for the on release signal. * This is READ ONLY. * @property onRelease * @type Kiwi.Signal * @public */ public get onRelease():Kiwi.Signal { return this.onUp; } /** * A alias for the on press signal. * This is READ ONLY. * @property onPress * @type Kiwi.Signal * @public */ public get onPress(): Kiwi.Signal { return this.onDown; } /** * If this input is enabled or not. * @property _enabled * @type boolean * @default false * @private */ private _enabled: boolean; /** * Get if the input is enabled or not. Note: Inputs should only be enabled when needed, otherwise unnecessary processing does occur which can result in a slower game. * @property enabled * @type boolean * @public */ public get enabled(): boolean { return this._enabled; } public set enabled(val: boolean) {//perhaps later the signals should only be set if the input is enabled. this._enabled = val; } /** * If a pointer is current pressing down on the input, this will be a reference to that pointer. Otherwise it will be null. * @property _isDown * @type Kiwi.Input.Pointer * @private */ private _isDown: Kiwi.Input.Pointer; /** * A boolean that indicates if no pointer is currently on the pointer * @property _isUp * @type boolean * @default true * @private */ private _isUp: boolean; /** * Indicates if a pointer is within the bounds or not. If one is then it referers to the pointer that is. Other it will be null. * @property _withinBounds * @type Kiwi.Input.Pointer * @private */ private _withinBounds: Kiwi.Input.Pointer; /** * boolean indicating if every pointer is currently outside of the bounds. * @property _outsideBounds * @type boolean * @default true * @private */ private _outsideBounds: boolean; /** * If a pointer just entered the input. Used for mouse&#x27;s to indicate when to appropriately fire the down event. * Note: Could be removed once mouse version of update gets updated. * @property _justEntered * @type boolean * @default false * @private */ private _justEntered: boolean; /** * Used to see if a pointer is currently on this input. Returns a boolean indicating either true or false. * This is READ ONLY. * @property isDown * @type boolean * @public */ public get isDown(): boolean { return (this._isDown !== null); } /** * Used to see if no pointer is on this input (so it is up). * This is READ ONLY. * @property isUp * @type boolean * @public */ public get isUp(): boolean { return this._isUp; } /** * Check to see if any pointer is within the bounds of this input. * This is READ ONLY. * @property withinBounds * @type boolean * @public */ public get withinBounds(): boolean { return (this._withinBounds !== null); } /** * See if no pointers are within the bounds of this entity. * This is READ ONLY. * @property outsideBounds * @type boolean * @public */ public get outsideBounds(): boolean { return this._outsideBounds; } /** * A reference to the pointer that is currently &#x27;dragging&#x27; this Object. * If not dragging then this is null. * @property _isDragging * @type Kiwi.Input.Pointer * @default null * @private */ private _isDragging: Kiwi.Input.Pointer = null; /** * The distance between the top left corner of this Objects parent and the coordinates of a Pointer. * @property _distance * @type Kiwi.Geom.Point * @private */ private _distance: Kiwi.Geom.Point; /** * A boolean indicating if dragging is temporarly disabled. Internal use only to stop events from misfiring. * @property _tempDragDisabled * @type boolean * @private */ private _tempDragDisabled: boolean; /** * Indicates if dragging is currently enabled. * @property _dragEnabled * @type boolean * @default false * @private */ private _dragEnabled: boolean = false; /** * This is used while dragging so that you can make the IChild &#x27;snap&#x27; to specific numbers to give a &#x27;grid like&#x27; effect. * E.g. If you had a 32 by 32 grid down and you wanted to make an element draggable but snap to the grid you can set this to 32. * Default value is one. * @property _dragDistance * @type number * @default 1 * @private */ private _dragDistance: number; /** * If when dragging, the IChild should snap to the center of the pointer it is being dragged by. * @property _dragSnapToCenter * @type boolean * @default false * @private */ private _dragSnapToCenter: boolean = false; /** * Returns a boolean indicating if this is currently dragging something. * This is READ ONLY. * @property isDragging * @type boolean * @public */ public get isDragging(): boolean { return (this._isDragging !== null); } /** * The drag distance that is used when dragging this object. See _dragDistance for more information. * @property dragDistance * @type number * @public */ public get dragDistance(): number { return this._dragDistance; } public set dragDistance(val: number) { this._dragDistance = val; } /** * Temporary property that gets updated everyframe with the pointer that is currently &#x27;down&#x27; on this entity. * @property _nowDown * @type Kiwi.Input.Pointer * @default null * @private */ private _nowDown: Kiwi.Input.Pointer = null; /** * Temporary property that gets updated everyframe with the pointer that was just &#x27;released&#x27; from being down on this entity * @property _nowUp * @type Kiwi.Input.Pointer * @default null * @private */ private _nowUp: Kiwi.Input.Pointer = null; /** * Temporary property of the pointer that is now within the bounds of the entity * @property _nowEntered * @type Kiwi.Input.Pointer * @default null * @private */ private _nowEntered: Kiwi.Input.Pointer = null; /** * Temporary property of the pointer that just left the bounds of the entity. * @property _nowLeft * @type Kiwi.Input.Pointer * @default null * @private */ private _nowLeft: Kiwi.Input.Pointer = null; /** * Temporary property of the pointer that just started draggging the entity. * @property _nowDragging * @type Kiwi.Input.Pointer * @default null * @private */ private _nowDragging: Kiwi.Input.Pointer = null; /** * Enables the dragging of this entity. * @method enableDrag * @param [snapToCenter=false] {boolean} If when dragging the Entity should snap to the center of the pointer. * @param [distance=1] {number} If when dragging the Entity should snap to numbers divisible by this amount. * @public */ public enableDrag(snapToCenter:boolean = false, distance:number = 1) { if (this.enabled == false) this.enabled = true; this._dragEnabled = true; this._dragSnapToCenter = snapToCenter; this._dragDistance = distance; this._isDragging = null; } /** * Disables the dragging of this entity. * @method disableDrag * @public */ public disableDrag() { this._dragEnabled = false; this._isDragging = null; } /** * The update loop for the input. * @method update * @protected */ public update() { if (this.enabled === false || !this.game || this.owner.active === false) { return; } // Reset the temporary properties this._nowDown = null; this._nowUp = null; this._nowEntered = null; this._nowLeft = null; this._nowDragging = null; //Use the appropriate method of checking. if (Kiwi.DEVICE.touch) { this._updateTouch(); } else { this._updateMouse(); } //If the entity is dragging. if (this.isDragging) { this._tempPoint = this.game.cameras.defaultCamera.transformPoint(this._isDragging.point); if (this._dragSnapToCenter === false) { this.owner.transform.x = Kiwi.Utils.GameMath.snapTo((this._tempPoint.x - this._box.hitboxOffset.x - this._distance.x), this._dragDistance); this.owner.transform.y = Kiwi.Utils.GameMath.snapTo((this._tempPoint.y - this._box.hitboxOffset.y - this._distance.y), this._dragDistance); } else { this.owner.transform.x = Kiwi.Utils.GameMath.snapTo((this._tempPoint.x - this._box.hitboxOffset.x - this._box.worldHitbox.width / 2), this._dragDistance); this.owner.transform.y = Kiwi.Utils.GameMath.snapTo((this._tempPoint.y - this._box.hitboxOffset.y - this._box.worldHitbox.height / 2), this._dragDistance); } } } /** * The update loop that gets executed when the game is using the touch manager. * @method _updateTouch * @private */ private _updateTouch() { for (var i = 0; i &lt; this.game.input.touch.maximumPointers; i++) { //if that pointer is active then see where it is if (this.game.input.touch.fingers[i].active === true) { this._evaluateTouchPointer(this.game.input.touch.fingers[i]); } //if the pointer is inactive check to see if it was just down else if (this.isDown === true &amp;&amp; this._isDown.id === this.game.input.touch.fingers[i].id) { this._nowUp = this.game.input.touch.fingers[i]; } //if the pointer is not active but was within the bounds check to see if it is now outside else if (this.isDown === false &amp;&amp; this._nowUp === null &amp;&amp; this.withinBounds === true &amp;&amp; this._withinBounds.id === this.game.input.touch.fingers[i].id) { this._nowUp = this.game.input.touch.fingers[i]; } } //Fire the events. LOTS OF CONDITIONS if (this._nowEntered !== null &amp;&amp; this.withinBounds === false) { this._withinBounds = this._nowEntered; this._outsideBounds = false; this._onEntered.dispatch(this.owner, this._nowEntered); } if (this._nowLeft !== null &amp;&amp; this.withinBounds === true) { this._withinBounds = null; this._outsideBounds = true; this._onLeft.dispatch(this.owner, this._nowLeft); } if (this._nowDown !== null &amp;&amp; this.isDown === false) { this._onDown.dispatch(this.owner, this._nowDown); this._isDown = this._nowDown; this._isUp = false; this._withinBounds = this._nowDown; this._outsideBounds = false; } if (this._dragEnabled == true &amp;&amp; this.isDragging === false &amp;&amp; this._nowDragging !== null) { this._onDragStarted.dispatch(this.owner, this._nowDragging); this._isDragging = this._nowDragging; } if (this._nowUp !== null) { this._onUp.dispatch(this.owner, this._nowUp); this._isDown = null; this._isUp = true; this._withinBounds = null; this._outsideBounds = true; //dispatch drag event if (this.isDragging === true &amp;&amp; this._isDragging.id == this._nowUp.id) { this._isDragging = null; this._onDragStopped.dispatch(this.owner, this._nowUp); } } } /** * A private method for checking to see if a touch pointer should activate any events. * @method _evaluateTouchPointer * @param pointer {Kiwi.Input.Finger} The pointer you are checking against. * @private */ private _evaluateTouchPointer(pointer:Kiwi.Input.Finger) { //if nothing isdown or what is down is the current pointer if (this.isDown === false || this._isDown.id === pointer.id) { this._tempPoint = this.game.cameras.defaultCamera.transformPoint( pointer.point ); this._tempCircle.setTo(this._tempPoint.x, this._tempPoint.y, pointer.circle.diameter); if (Kiwi.Geom.Intersect.circleToRectangle(this._tempCircle, this._box.worldHitbox).result) { if (this.isDown === true &amp;&amp; this._isDown.id === pointer.id || this.isDown === false &amp;&amp; pointer.duration &gt; 1) { this._nowEntered = pointer; } if (this.isDown === false &amp;&amp; pointer.frameDuration &lt; 2) { this._nowDown = pointer; } if (this._dragEnabled &amp;&amp; this.isDragging == false &amp;&amp; this.isDown == true) { this._distance.x = this._tempPoint.x - this._box.worldHitbox.left; this._distance.y = this._tempPoint.y - this._box.worldHitbox.top; this._nowDragging = pointer; } } else { if (this.isDown === true) { this._nowLeft = pointer; } else if(this.withinBounds === true &amp;&amp; this._withinBounds.id == pointer.id) { this._nowLeft = pointer; } } } } /** * The update loop that runs when the mouse manager is the method for interacting with the screen. * @method _updateMouse * @private */ private _updateMouse() { this._evaluateMousePointer(this.game.input.mouse.cursor); //dispatch the events if (this._nowLeft !== null) { this._onLeft.dispatch(this.owner, this._nowLeft); } if (this._nowEntered !== null) { this._onEntered.dispatch(this.owner, this._nowEntered); } if (this._nowDown !== null &amp;&amp; this.isDown === false) { this._onDown.dispatch(this.owner, this._nowDown); this._isDown = this._nowDown; this._isUp = false; } if (this._dragEnabled == true &amp;&amp; this.isDragging === false &amp;&amp; this._nowDragging !== null) { this._onDragStarted.dispatch(this.owner, this._nowDragging); this._isDragging = this._nowDragging; } if (this.isDown === true &amp;&amp; this._nowUp !== null &amp;&amp; this._isDown.id === this._nowUp.id) { this._onUp.dispatch(this.owner, this._nowUp); // Dispatch drag event if (this.isDragging === true &amp;&amp; this._isDragging.id == this._nowUp.id) { this._isDragging = null; this._onDragStopped.dispatch(this.owner, this._nowUp); } this._isDown = null; this._isUp = true; } } /** * Evaluates where and what the mouse cursor is doing in relation to this box. Needs a little bit more love. * @method _evaluateMousePointer * @param pointer {Kiwi.Input.MouseCursor} * @private */ private _evaluateMousePointer(pointer:Kiwi.Input.MouseCursor) { this._tempPoint = this.game.cameras.defaultCamera.transformPoint(pointer.point); if (Kiwi.Geom.Intersect.pointToRectangle(this._tempPoint, this._box.worldHitbox).result) { if (this._dragEnabled &amp;&amp; this.isDragging === false) { this._distance.x = this._tempPoint.x - this._box.worldHitbox.left; this._distance.y = this._tempPoint.y - this._box.worldHitbox.top; } // Has it just moved inside? if (this.withinBounds === false) { this._nowEntered = pointer; this._withinBounds = pointer; this._outsideBounds = false; this._justEntered = true; } } else { // It&#x27;s outside the bounds now, was it previously in? if (this.withinBounds === true &amp;&amp; this.isDragging === false) { this._nowLeft = pointer; this._withinBounds = null; this._outsideBounds = true; } } // Input is down (click/touch) if (pointer.isDown === true) { //if is was a mouse, did it just enter? if (this._justEntered) { this._isDown = pointer; this._isUp = false; this._tempDragDisabled = true; } // Within bounds? if (this.withinBounds === true &amp;&amp; this.isDown === false &amp;&amp; this._nowDown === null) { this._nowDown = pointer; } if (this._dragEnabled === true &amp;&amp; this.isDragging == false &amp;&amp; this._tempDragDisabled === false) { if(this.isDown == true) { this._nowDragging = pointer; } } } else { if (this._tempDragDisabled === true) this._tempDragDisabled = false; if (this.isDown === true) { this._nowUp = pointer; } } if (this._justEntered) this._justEntered = false; } /** * Destroys the input. * @method destory * @public */ public destroy() { super.destroy(); this.enabled = false; delete this._box; delete this._isDown; delete this._isUp; delete this._isDragging; delete this._dragEnabled; if(this._onDown) this._onDown.dispose(); delete this._onDown; if(this._onDragStarted) this._onDragStarted.dispose(); delete this._onDragStarted; if (this._onUp) this._onUp.dispose(); delete this._onUp; if (this._onLeft) this._onLeft.dispose(); delete this._onLeft; if (this._onEntered) this._onEntered.dispose(); delete this._onEntered; if (this._onDragStopped) this._onDragStopped.dispose(); delete this._onDragStopped; delete this._dragDistance; } } } </pre> </div> </div> </div> </div> </div> </div> </div> <script src="../assets/vendor/prettify/prettify-min.js"></script> <script>prettyPrint();</script> <script src="../assets/js/yui-prettify.js"></script> <script src="../assets/../api.js"></script> <script src="../assets/js/api-filter.js"></script> <script src="../assets/js/api-list.js"></script> <script src="../assets/js/api-search.js"></script> <script src="../assets/js/apidocs.js"></script> </body> </html>
GintarasV/kiwi.js
docs/files/src_components_Input.ts.html
HTML
mit
40,970
<div class="umb-block-list-block-configuration" ng-controller="Umbraco.PropertyEditors.BlockList.BlockConfigurationController as vm" > <div class="umb-block-card-grid" ui-sortable="vm.sortableOptions" ng-model="model.value" > <umb-block-card block-config-model="block" element-type-model="vm.getElementTypeByKey(block.contentElementTypeKey)" ng-repeat="block in model.value" ng-class="{'--isOpen':vm.openBlock === block}" ng-click="vm.openBlockOverlay(block)"> <div class="__actions"> <button type="button" class="btn-reset __action umb-outline" ng-click="vm.requestRemoveBlockByIndex($index); $event.stopPropagation();"> <i class="icon icon-trash" aria-hidden="true"></i> <localize key="general_delete" class="sr-only">Delete</localize> </button> </div> </umb-block-card> <button id="{{model.alias}}" type="button" class="btn-reset __add-button" ng-click="vm.openAddDialog($event)"> <localize key="general_add">Add</localize> </button> </div> </div>
mattbrailsford/Umbraco-CMS
src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.html
HTML
mit
1,206
<footer id='page-footer'> <div class='container'> <div id='footer-copyrights' class='clearfix pt4'> <p class='pull-left extra-small'>&copy; Sahana Eden. {{=T("All Rights Reserved.")}}</p> </div> </div> </footer>
waidyanatha/sambro-eden
private/templates/SAMBRO/views/footer.html
HTML
mit
220
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Files --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Files</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="rdoc-style.css" type="text/css" /> <base target="docwin" /> </head> <body> <div id="index"> <h1 class="section-bar">Files</h1> <div id="index-entries"> <a href="files/__/README_txt.html">../README.txt</a><br /> <a href="files/kwalify_rb.html">kwalify.rb</a><br /> <a href="files/kwalify/errors_rb.html">kwalify/errors.rb</a><br /> <a href="files/kwalify/main_rb.html">kwalify/main.rb</a><br /> <a href="files/kwalify/messages_rb.html">kwalify/messages.rb</a><br /> <a href="files/kwalify/meta-validator_rb.html">kwalify/meta-validator.rb</a><br /> <a href="files/kwalify/parser/base_rb.html">kwalify/parser/base.rb</a><br /> <a href="files/kwalify/parser/yaml_rb.html">kwalify/parser/yaml.rb</a><br /> <a href="files/kwalify/rule_rb.html">kwalify/rule.rb</a><br /> <a href="files/kwalify/types_rb.html">kwalify/types.rb</a><br /> <a href="files/kwalify/util_rb.html">kwalify/util.rb</a><br /> <a href="files/kwalify/util/assert-text-equal_rb.html">kwalify/util/assert-text-equal.rb</a><br /> <a href="files/kwalify/util/hash-interface_rb.html">kwalify/util/hash-interface.rb</a><br /> <a href="files/kwalify/util/hashlike_rb.html">kwalify/util/hashlike.rb</a><br /> <a href="files/kwalify/util/option-parser_rb.html">kwalify/util/option-parser.rb</a><br /> <a href="files/kwalify/util/ordered-hash_rb.html">kwalify/util/ordered-hash.rb</a><br /> <a href="files/kwalify/util/testcase-helper_rb.html">kwalify/util/testcase-helper.rb</a><br /> <a href="files/kwalify/validator_rb.html">kwalify/validator.rb</a><br /> <a href="files/kwalify/yaml-parser_rb.html">kwalify/yaml-parser.rb</a><br /> </div> </div> </body> </html>
psiegeldb/kwalify
doc-api/fr_file_index.html
HTML
mit
2,112
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Uses of Class org.apache.poi.hslf.usermodel.HSLFPictureData (POI API Documentation) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.poi.hslf.usermodel.HSLFPictureData (POI API Documentation)"; } } </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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel"><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/poi/hslf/usermodel/\class-useHSLFPictureData.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HSLFPictureData.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.poi.hslf.usermodel.HSLFPictureData</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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.poi.hslf.blip"><B>org.apache.poi.hslf.blip</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.poi.hslf.model"><B>org.apache.poi.hslf.model</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.poi.hslf.usermodel"><B>org.apache.poi.hslf.usermodel</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.poi.hslf.blip"><!-- --></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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A> in <A HREF="../../../../../../org/apache/poi/hslf/blip/package-summary.html">org.apache.poi.hslf.blip</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">Subclasses of <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A> in <A HREF="../../../../../../org/apache/poi/hslf/blip/package-summary.html">org.apache.poi.hslf.blip</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/blip/Bitmap.html" title="class in org.apache.poi.hslf.blip">Bitmap</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Represents a bitmap picture data: JPEG or PNG.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/blip/DIB.html" title="class in org.apache.poi.hslf.blip">DIB</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Represents a DIB picture data in a PPT file</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/blip/EMF.html" title="class in org.apache.poi.hslf.blip">EMF</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Represents EMF (Windows Enhanced Metafile) picture data.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/blip/JPEG.html" title="class in org.apache.poi.hslf.blip">JPEG</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Represents a JPEG picture data in a PPT file</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/blip/Metafile.html" title="class in org.apache.poi.hslf.blip">Metafile</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Represents a metafile picture which can be one of the following types: EMF, WMF, or PICT.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/blip/PICT.html" title="class in org.apache.poi.hslf.blip">PICT</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Represents Macintosh PICT picture data.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/blip/PNG.html" title="class in org.apache.poi.hslf.blip">PNG</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Represents a PNG picture data in a PPT file</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/blip/WMF.html" title="class in org.apache.poi.hslf.blip">WMF</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Represents a WMF (Windows Metafile) picture data.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.poi.hslf.model"><!-- --></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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A> in <A HREF="../../../../../../org/apache/poi/hslf/model/package-summary.html">org.apache.poi.hslf.model</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">Constructors in <A HREF="../../../../../../org/apache/poi/hslf/model/package-summary.html">org.apache.poi.hslf.model</A> with parameters of type <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/model/ActiveXShape.html#ActiveXShape(int, org.apache.poi.hslf.usermodel.HSLFPictureData)">ActiveXShape</A></B>(int&nbsp;movieIdx, <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;pictureData)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new <code>Picture</code></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/model/MovieShape.html#MovieShape(int, org.apache.poi.hslf.usermodel.HSLFPictureData)">MovieShape</A></B>(int&nbsp;movieIdx, <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;pictureData)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new <code>Picture</code></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/model/MovieShape.html#MovieShape(int, org.apache.poi.hslf.usermodel.HSLFPictureData, org.apache.poi.sl.usermodel.ShapeContainer)">MovieShape</A></B>(int&nbsp;movieIdx, <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;pictureData, <A HREF="../../../../../../org/apache/poi/sl/usermodel/ShapeContainer.html" title="interface in org.apache.poi.sl.usermodel">ShapeContainer</A>&lt;<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFShape</A>,<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFTextParagraph.html" title="class in org.apache.poi.hslf.usermodel">HSLFTextParagraph</A>&gt;&nbsp;parent)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new <code>Picture</code></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/model/OLEShape.html#OLEShape(org.apache.poi.hslf.usermodel.HSLFPictureData)">OLEShape</A></B>(<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;data)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new <code>OLEShape</code></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/model/OLEShape.html#OLEShape(org.apache.poi.hslf.usermodel.HSLFPictureData, org.apache.poi.sl.usermodel.ShapeContainer)">OLEShape</A></B>(<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;data, <A HREF="../../../../../../org/apache/poi/sl/usermodel/ShapeContainer.html" title="interface in org.apache.poi.sl.usermodel">ShapeContainer</A>&lt;<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFShape</A>,<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFTextParagraph.html" title="class in org.apache.poi.hslf.usermodel">HSLFTextParagraph</A>&gt;&nbsp;parent)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new <code>OLEShape</code></TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.poi.hslf.usermodel"><!-- --></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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A> in <A HREF="../../../../../../org/apache/poi/hslf/usermodel/package-summary.html">org.apache.poi.hslf.usermodel</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/poi/hslf/usermodel/package-summary.html">org.apache.poi.hslf.usermodel</A> that return <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></CODE></FONT></TD> <TD><CODE><B>HSLFSlideShow.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFSlideShow.html#addPicture(byte[], org.apache.poi.sl.usermodel.PictureData.PictureType)">addPicture</A></B>(byte[]&nbsp;data, <A HREF="../../../../../../org/apache/poi/sl/usermodel/PictureData.PictureType.html" title="enum in org.apache.poi.sl.usermodel">PictureData.PictureType</A>&nbsp;format)</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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></CODE></FONT></TD> <TD><CODE><B>HSLFSlideShow.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFSlideShow.html#addPicture(java.io.File, org.apache.poi.sl.usermodel.PictureData.PictureType)">addPicture</A></B>(java.io.File&nbsp;pict, <A HREF="../../../../../../org/apache/poi/sl/usermodel/PictureData.PictureType.html" title="enum in org.apache.poi.sl.usermodel">PictureData.PictureType</A>&nbsp;format)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a picture to this presentation and returns the associated index.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></CODE></FONT></TD> <TD><CODE><B>HSLFPictureData.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html#create(org.apache.poi.sl.usermodel.PictureData.PictureType)">create</A></B>(<A HREF="../../../../../../org/apache/poi/sl/usermodel/PictureData.PictureType.html" title="enum in org.apache.poi.sl.usermodel">PictureData.PictureType</A>&nbsp;type)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create an instance of <code>PictureData</code> by type.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></CODE></FONT></TD> <TD><CODE><B>HSLFPictureShape.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html#getPictureData()">getPictureData</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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></CODE></FONT></TD> <TD><CODE><B>HSLFFill.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFFill.html#getPictureData()">getPictureData</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<code>PictureData</code> object used in a texture, pattern of picture fill.</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/poi/hslf/usermodel/package-summary.html">org.apache.poi.hslf.usermodel</A> that return types with arguments of type <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.util.List&lt;<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&gt;</CODE></FONT></TD> <TD><CODE><B>HSLFSlideShowImpl.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFSlideShowImpl.html#getPictureData()">getPictureData</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return list of pictures contained in this presentation</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.util.List&lt;<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&gt;</CODE></FONT></TD> <TD><CODE><B>HSLFSlideShow.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFSlideShow.html#getPictureData()">getPictureData</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/poi/hslf/usermodel/package-summary.html">org.apache.poi.hslf.usermodel</A> with parameters of type <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></FONT></TH> </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>HSLFSlideShowImpl.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFSlideShowImpl.html#addPicture(org.apache.poi.hslf.usermodel.HSLFPictureData)">addPicture</A></B>(<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;img)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Add a new picture to this presentation.</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>HSLFFill.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFFill.html#setPictureData(org.apache.poi.hslf.usermodel.HSLFPictureData)">setPictureData</A></B>(<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;data)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assign picture used to fill the underlying shape.</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">Constructors in <A HREF="../../../../../../org/apache/poi/hslf/usermodel/package-summary.html">org.apache.poi.hslf.usermodel</A> with parameters of type <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html#HSLFPictureShape(org.apache.poi.hslf.usermodel.HSLFPictureData)">HSLFPictureShape</A></B>(<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;data)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new <code>Picture</code></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html#HSLFPictureShape(org.apache.poi.hslf.usermodel.HSLFPictureData, org.apache.poi.sl.usermodel.ShapeContainer)">HSLFPictureShape</A></B>(<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureData</A>&nbsp;data, <A HREF="../../../../../../org/apache/poi/sl/usermodel/ShapeContainer.html" title="interface in org.apache.poi.sl.usermodel">ShapeContainer</A>&lt;<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFShape</A>,<A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFTextParagraph.html" title="class in org.apache.poi.hslf.usermodel">HSLFTextParagraph</A>&gt;&nbsp;parent)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new <code>Picture</code></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/poi/hslf/usermodel/HSLFPictureData.html" title="class in org.apache.poi.hslf.usermodel"><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/poi/hslf/usermodel/\class-useHSLFPictureData.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HSLFPictureData.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 2016 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
Sebaxtian/KDD
poi-3.14/docs/apidocs/org/apache/poi/hslf/usermodel/class-use/HSLFPictureData.html
HTML
mit
25,923
<!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_33) on Tue Aug 20 12:21:10 EDT 2013 --> <TITLE> Deprecated List </TITLE> <META NAME="date" CONTENT="2013-08-20"> <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="Deprecated List"; } } </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"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Deprecated</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> </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?deprecated-list.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="deprecated-list.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>Deprecated API</B></H2> </CENTER> <HR SIZE="4" NOSHADE> <B>Contents</B><UL> <LI><A HREF="#method">Deprecated Methods</A> <LI><A HREF="#constructor">Deprecated Constructors</A> </UL> <A NAME="method"><!-- --></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>Deprecated Methods</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getAssembleAllEnabled()">mars.Settings.getAssembleAllEnabled()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.ASSEMBLE_ALL_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getAssembleOnOpenEnabled()">mars.Settings.getAssembleOnOpenEnabled()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.ASSEMBLE_ON_OPEN_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getBareMachineEnabled()">mars.Settings.getBareMachineEnabled()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.BARE_MACHINE_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getDataSegmentHighlighting()">mars.Settings.getDataSegmentHighlighting()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DATA_SEGMENT_HIGHLIGHTING</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getDelayedBranchingEnabled()">mars.Settings.getDelayedBranchingEnabled()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DELAYED_BRANCHING_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getDisplayAddressesInHex()">mars.Settings.getDisplayAddressesInHex()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DISPLAY_ADDRESSES_IN_HEX</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getDisplayValuesInHex()">mars.Settings.getDisplayValuesInHex()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DISPLAY_VALUES_IN_HEX</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getEditorLineNumbersDisplayed()">mars.Settings.getEditorLineNumbersDisplayed()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.EDITOR_LINE_NUMBERS_DISPLAYED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getExceptionHandlerEnabled()">mars.Settings.getExceptionHandlerEnabled()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.EXCEPTION_HANDLER_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getExtendedAssemblerEnabled()">mars.Settings.getExtendedAssemblerEnabled()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.EXTENDED_ASSEMBLER_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getLabelWindowVisibility()">mars.Settings.getLabelWindowVisibility()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.LABEL_WINDOW_VISIBILITY</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getProgramArguments()">mars.Settings.getProgramArguments()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.PROGRAM_ARGUMENTS</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getRegistersHighlighting()">mars.Settings.getRegistersHighlighting()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.REGISTERS_HIGHLIGHTING</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getStartAtMain()">mars.Settings.getStartAtMain()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.START_AT_MAIN</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#getWarningsAreErrors()">mars.Settings.getWarningsAreErrors()</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>getBooleanSetting(int id)</code> with the appropriate boolean setting ID (e.g. <code>Settings.WARNINGS_ARE_ERRORS</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setAssembleAllEnabled(boolean)">mars.Settings.setAssembleAllEnabled(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.ASSEMBLE_ALL_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setAssembleOnOpenEnabled(boolean)">mars.Settings.setAssembleOnOpenEnabled(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.ASSEMBLE_ON_OPEN_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setDataSegmentHighlighting(boolean)">mars.Settings.setDataSegmentHighlighting(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DATA_SEGMENT_HIGHLIGHTING</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setDelayedBranchingEnabled(boolean)">mars.Settings.setDelayedBranchingEnabled(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DELAYED_BRANCHING_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setDelayedBranchingEnabledNonPersistent(boolean)">mars.Settings.setDelayedBranchingEnabledNonPersistent(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSettingNonPersistent(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DELAYED_BRANCHING_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setDisplayAddressesInHex(boolean)">mars.Settings.setDisplayAddressesInHex(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DISPLAY_ADDRESSES_IN_HEX</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setDisplayValuesInHex(boolean)">mars.Settings.setDisplayValuesInHex(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.DISPLAY_VALUES_IN_HEX</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setEditorLineNumbersDisplayed(boolean)">mars.Settings.setEditorLineNumbersDisplayed(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.EDITOR_LINE_NUMBERS_DISPLAYED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setExceptionHandlerEnabled(boolean)">mars.Settings.setExceptionHandlerEnabled(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.EXCEPTION_HANDLER_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setExtendedAssemblerEnabled(boolean)">mars.Settings.setExtendedAssemblerEnabled(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.EXTENDED_ASSEMBLER_ENABLED</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setLabelWindowVisibility(boolean)">mars.Settings.setLabelWindowVisibility(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.LABEL_WINDOW_VISIBILITY</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setProgramArguments(boolean)">mars.Settings.setProgramArguments(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.PROGRAM_ARGUMENTS</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setRegistersHighlighting(boolean)">mars.Settings.setRegistersHighlighting(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.REGISTERS_HIGHLIGHTING</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setStartAtMain(boolean)">mars.Settings.setStartAtMain(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.START_AT_MAIN</code>)</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/Settings.html#setWarningsAreErrors(boolean)">mars.Settings.setWarningsAreErrors(boolean)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <code>setBooleanSetting(int id, boolean value)</code> with the appropriate boolean setting ID (e.g. <code>Settings.WARNINGS_ARE_ERRORS</code>)</I>&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="constructor"><!-- --></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>Deprecated Constructors</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/ErrorMessage.html#ErrorMessage(boolean, java.lang.String, int, int, java.lang.String, java.lang.String)">mars.ErrorMessage(boolean, String, int, int, String, String)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Newer constructors replace the String filename parameter with a MIPSprogram parameter to provide more information.</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/ErrorMessage.html#ErrorMessage(java.lang.String, int, int, java.lang.String)">mars.ErrorMessage(String, int, int, String)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Newer constructors replace the String filename parameter with a MIPSprogram parameter to provide more information.</I>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="mars/ErrorMessage.html#ErrorMessage(java.lang.String, int, int, java.lang.String, java.lang.String)">mars.ErrorMessage(String, int, int, String, String)</A> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Newer constructors replace the String filename parameter with a MIPSprogram parameter to provide more information.</I>&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"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Deprecated</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> </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?deprecated-list.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="deprecated-list.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>
adolphenom/MARS_Assembler
docs/deprecated-list.html
HTML
mit
18,751
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>http::icy_stream::write_some</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../index.html" title="Chapter&#160;1.&#160;Boost.Beast"> <link rel="up" href="../boost__beast__http__icy_stream.html" title="http::icy_stream"> <link rel="prev" href="read_some/overload2.html" title="http::icy_stream::read_some (2 of 2 overloads)"> <link rel="next" href="write_some/overload1.html" title="http::icy_stream::write_some (1 of 2 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="read_some/overload2.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost__beast__http__icy_stream.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="write_some/overload1.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="beast.ref.boost__beast__http__icy_stream.write_some"></a><a class="link" href="write_some.html" title="http::icy_stream::write_some">http::icy_stream::write_some</a> </h5></div></div></div> <p> <a class="indexterm" name="idp120618384"></a> Write some data to the stream. </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">class</span> <a href="../../../../../../../doc/html/boost_asio/reference/ConstBufferSequence.html" target="_top"><span class="bold"><strong>ConstBufferSequence</strong></span></a><span class="special">&gt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="write_some/overload1.html" title="http::icy_stream::write_some (1 of 2 overloads)">write_some</a><span class="special">(</span> <span class="identifier">ConstBufferSequence</span> <span class="keyword">const</span><span class="special">&amp;</span> <span class="identifier">buffers</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="write_some/overload1.html" title="http::icy_stream::write_some (1 of 2 overloads)">more...</a></em></span> <span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">class</span> <a href="../../../../../../../doc/html/boost_asio/reference/ConstBufferSequence.html" target="_top"><span class="bold"><strong>ConstBufferSequence</strong></span></a><span class="special">&gt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="write_some/overload2.html" title="http::icy_stream::write_some (2 of 2 overloads)">write_some</a><span class="special">(</span> <span class="identifier">ConstBufferSequence</span> <span class="keyword">const</span><span class="special">&amp;</span> <span class="identifier">buffers</span><span class="special">,</span> <span class="identifier">error_code</span><span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="write_some/overload2.html" title="http::icy_stream::write_some (2 of 2 overloads)">more...</a></em></span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2016, 2017 Vinnie Falco<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="read_some/overload2.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost__beast__http__icy_stream.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="write_some/overload1.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
nawawi/poedit
deps/boost/libs/beast/doc/html/beast/ref/boost__beast__http__icy_stream/write_some.html
HTML
mit
5,289
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Function template back_move_inserter</title> <link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../move/reference.html#header.boost.move.iterator_hpp" title="Header &lt;boost/move/iterator.hpp&gt;"> <link rel="prev" href="make_move_iterator.html" title="Function template make_move_iterator"> <link rel="next" href="front_move_inserter.html" title="Function template front_move_inserter"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../boost.png"></td> <td align="center"><a href="../../../index.html">Home</a></td> <td align="center"><a href="../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="make_move_iterator.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../move/reference.html#header.boost.move.iterator_hpp"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="front_move_inserter.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.back_move_inserter"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Function template back_move_inserter</span></h2> <p>boost::back_move_inserter</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../move/reference.html#header.boost.move.iterator_hpp" title="Header &lt;boost/move/iterator.hpp&gt;">boost/move/iterator.hpp</a>&gt; </span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> C<span class="special">&gt;</span> <a class="link" href="back_move_insert_iterator.html" title="Class template back_move_insert_iterator">back_move_insert_iterator</a><span class="special">&lt;</span> <span class="identifier">C</span> <span class="special">&gt;</span> <span class="identifier">back_move_inserter</span><span class="special">(</span><span class="identifier">C</span> <span class="special">&amp;</span> x<span class="special">)</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp115477184"></a><h2>Description</h2> <p><span class="bold"><strong>Returns</strong></span>: back_move_insert_iterator&lt;C&gt;(x). </p> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2008-2012 Ion Gaztanaga<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="make_move_iterator.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../move/reference.html#header.boost.move.iterator_hpp"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="front_move_inserter.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
mxrrow/zaicoin
src/deps/boost/doc/html/boost/back_move_inserter.html
HTML
mit
4,226
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Macro BOOST_RV_REF_BEG</title> <link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="move/reference.html#header.boost.move.core_hpp" title="Header &lt;boost/move/core.hpp&gt;"> <link rel="prev" href="BOOST_RV_REF.html" title="Macro BOOST_RV_REF"> <link rel="next" href="BOOST_RV_REF_END.html" title="Macro BOOST_RV_REF_END"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../boost.png"></td> <td align="center"><a href="../../index.html">Home</a></td> <td align="center"><a href="../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="BOOST_RV_REF.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="move/reference.html#header.boost.move.core_hpp"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BOOST_RV_REF_END.html"><img src="../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="BOOST_RV_REF_BEG"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Macro BOOST_RV_REF_BEG</span></h2> <p>BOOST_RV_REF_BEG</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="move/reference.html#header.boost.move.core_hpp" title="Header &lt;boost/move/core.hpp&gt;">boost/move/core.hpp</a>&gt; </span>BOOST_RV_REF_BEG</pre></div> <div class="refsect1"> <a name="idp329477296"></a><h2>Description</h2> <p>This macro is used to achieve portable syntax in move constructors and assignments for template classes marked as BOOST_COPYABLE_AND_MOVABLE or BOOST_MOVABLE_BUT_NOT_COPYABLE. As macros have problems with comma-separated template arguments, the template argument must be preceded with BOOST_RV_REF_BEG and ended with BOOST_RV_REF_END </p> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2008-2014 Ion Gaztanaga<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="BOOST_RV_REF.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="move/reference.html#header.boost.move.core_hpp"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BOOST_RV_REF_END.html"><img src="../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
TyRoXx/cdm
original_sources/boost_1_59_0/doc/html/BOOST_RV_REF_BEG.html
HTML
mit
3,807