text
stringlengths
2
1.04M
meta
dict
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Plugin -Didea.is.internal=true" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin" singleton="false"> <module name="ClassicIcon" /> <option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea -Didea.is.internal=true" /> <option name="PROGRAM_PARAMETERS" value="" /> <method /> </configuration> </component>
{ "content_hash": "0d9cb9955b726b1392eb974cb736672a", "timestamp": "", "source": "github", "line_count": 8, "max_line_length": 172, "avg_line_length": 58, "alnum_prop": 0.7327586206896551, "repo_name": "retomerz/classic-icon-idea", "id": "7ae1e3d1509784a77325543af00e1278ee32f525", "size": "464", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": ".idea/runConfigurations/Plugin__Didea_is_internal_true.xml", "mode": "33188", "license": "mit", "language": [ { "name": "Batchfile", "bytes": "804" }, { "name": "Java", "bytes": "8733" } ], "symlink_target": "" }
""" Stores details about the available payment options. Also stores credit card info in an encrypted format. """ from Crypto.Cipher import Blowfish from datetime import datetime from decimal import Decimal from django.conf import settings from django.db import models from django.utils.translation import ugettext_lazy as _ from livesettings import config_value, config_choice_values, SettingNotSet from payment.fields import PaymentChoiceCharField, CreditChoiceCharField from satchmo_store.contact.models import Contact import base64 import config import keyedcache import logging import satchmo_utils.sslurllib log = logging.getLogger('payment.models') class PaymentOption(models.Model): """ If there are multiple options - CC, Cash, COD, etc this class allows configuration. """ description = models.CharField(_("Description"), max_length=20) active = models.BooleanField(_("Active"), help_text=_("Should this be displayed as an option for the user?")) optionName = PaymentChoiceCharField(_("Option Name"), max_length=20, unique=True, help_text=_("The class name as defined in payment.py")) sortOrder = models.IntegerField(_("Sort Order")) class Meta: verbose_name = _("Payment Option") verbose_name_plural = _("Payment Options") class CreditCardDetail(models.Model): """ Stores an encrypted CC number, its information, and its displayable number. """ orderpayment = models.ForeignKey('shop.OrderPayment', unique=True, related_name="creditcards") credit_type = CreditChoiceCharField(_("Credit Card Type"), max_length=16) display_cc = models.CharField(_("CC Number (Last 4 digits)"), max_length=4, ) encrypted_cc = models.CharField(_("Encrypted Credit Card"), max_length=40, blank=True, null=True, editable=False) expire_month = models.IntegerField(_("Expiration Month")) expire_year = models.IntegerField(_("Expiration Year")) card_holder = models.CharField(_("card_holder Name"), max_length=60, blank=True) start_month = models.IntegerField(_("Start Month"), blank=True, null=True) start_year = models.IntegerField(_("Start Year"), blank=True, null=True) issue_num = models.CharField(blank=True, null=True, max_length=2) def storeCC(self, ccnum): """Take as input a valid cc, encrypt it and store the last 4 digits in a visible form""" self.display_cc = ccnum[-4:] encrypted_cc = _encrypt_code(ccnum) if config_value('PAYMENT', 'STORE_CREDIT_NUMBERS'): self.encrypted_cc = encrypted_cc else: standin = "%s%i%i%i" % (self.display_cc, self.expire_month, self.expire_year, self.orderpayment.id) self.encrypted_cc = _encrypt_code(standin) key = _encrypt_code(standin + '-card') keyedcache.cache_set(key, skiplog=True, length=60*60, value=encrypted_cc) def setCCV(self, ccv): """Put the CCV in the cache, don't save it for security/legal reasons.""" if not self.encrypted_cc: raise ValueError('CreditCardDetail expecting a credit card number to be stored before storing CCV') keyedcache.cache_set(self.encrypted_cc, skiplog=True, length=60*60, value=ccv) def getCCV(self): try: ccv = keyedcache.cache_get(self.encrypted_cc) except keyedcache.NotCachedError: ccv = "" return ccv ccv = property(fget=getCCV, fset=setCCV) def _decryptCC(self): ccnum = _decrypt_code(self.encrypted_cc) if not config_value('PAYMENT', 'STORE_CREDIT_NUMBERS'): try: key = _encrypt_code(ccnum + '-card') encrypted_ccnum = keyedcache.cache_get(key) ccnum = _decrypt_code(encrypted_ccnum) except keyedcache.NotCachedError: ccnum = "" return ccnum decryptedCC = property(_decryptCC) def _expireDate(self): return(str(self.expire_month) + "/" + str(self.expire_year)) expirationDate = property(_expireDate) class Meta: verbose_name = _("Credit Card") verbose_name_plural = _("Credit Cards") def _decrypt_code(code): """Decrypt code encrypted by _encrypt_code""" secret_key = settings.SECRET_KEY encryption_object = Blowfish.new(secret_key) # strip padding from decrypted credit card number return encryption_object.decrypt(base64.b64decode(code)).rstrip('X') def _encrypt_code(code): """Quick encrypter for CC codes or code fragments""" secret_key = settings.SECRET_KEY encryption_object = Blowfish.new(secret_key) # block cipher length must be a multiple of 8 padding = '' if (len(code) % 8) <> 0: padding = 'X' * (8 - (len(code) % 8)) return base64.b64encode(encryption_object.encrypt(code + padding))
{ "content_hash": "14167bc5030c7a2b49a273869c9488ff", "timestamp": "", "source": "github", "line_count": 124, "max_line_length": 111, "avg_line_length": 39.75, "alnum_prop": 0.6567255021302495, "repo_name": "Ryati/satchmo", "id": "a96b2ee37a447e3c96c4e82988461bed6a5a2e4f", "size": "4929", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "satchmo/apps/payment/models.py", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "JavaScript", "bytes": "72496" }, { "name": "Python", "bytes": "1758633" } ], "symlink_target": "" }
package org.apache.ignite.internal.processors.hadoop; import org.apache.ignite.cluster.*; import org.apache.ignite.configuration.*; import org.apache.ignite.internal.*; import org.apache.ignite.internal.processors.hadoop.jobtracker.*; import org.apache.ignite.internal.processors.hadoop.shuffle.*; import org.apache.ignite.internal.processors.hadoop.taskexecutor.*; import org.apache.ignite.internal.util.typedef.internal.*; import java.util.*; /** * Hadoop accelerator context. */ public class HadoopContext { /** Kernal context. */ private GridKernalContext ctx; /** Hadoop configuration. */ private HadoopConfiguration cfg; /** Job tracker. */ private HadoopJobTracker jobTracker; /** External task executor. */ private HadoopTaskExecutorAdapter taskExecutor; /** */ private HadoopShuffle shuffle; /** Managers list. */ private List<HadoopComponent> components = new ArrayList<>(); /** * @param ctx Kernal context. */ public HadoopContext( GridKernalContext ctx, HadoopConfiguration cfg, HadoopJobTracker jobTracker, HadoopTaskExecutorAdapter taskExecutor, HadoopShuffle shuffle ) { this.ctx = ctx; this.cfg = cfg; this.jobTracker = add(jobTracker); this.taskExecutor = add(taskExecutor); this.shuffle = add(shuffle); } /** * Gets list of managers. * * @return List of managers. */ public List<HadoopComponent> components() { return components; } /** * Gets kernal context. * * @return Grid kernal context instance. */ public GridKernalContext kernalContext() { return ctx; } /** * Gets Hadoop configuration. * * @return Hadoop configuration. */ public HadoopConfiguration configuration() { return cfg; } /** * Gets local node ID. Shortcut for {@code kernalContext().localNodeId()}. * * @return Local node ID. */ public UUID localNodeId() { return ctx.localNodeId(); } /** * Gets local node order. * * @return Local node order. */ public long localNodeOrder() { assert ctx.discovery() != null; return ctx.discovery().localNode().order(); } /** * @return Hadoop-enabled nodes. */ public Collection<ClusterNode> nodes() { return ctx.discovery().cacheNodes(CU.SYS_CACHE_HADOOP_MR, ctx.discovery().topologyVersion()); } /** * @return {@code True} if */ public boolean jobUpdateLeader() { long minOrder = Long.MAX_VALUE; ClusterNode minOrderNode = null; for (ClusterNode node : nodes()) { if (node.order() < minOrder) { minOrder = node.order(); minOrderNode = node; } } assert minOrderNode != null; return localNodeId().equals(minOrderNode.id()); } /** * @param meta Job metadata. * @return {@code true} If local node is participating in job execution. */ public boolean isParticipating(HadoopJobMetadata meta) { UUID locNodeId = localNodeId(); if (locNodeId.equals(meta.submitNodeId())) return true; HadoopMapReducePlan plan = meta.mapReducePlan(); return plan.mapperNodeIds().contains(locNodeId) || plan.reducerNodeIds().contains(locNodeId) || jobUpdateLeader(); } /** * @return Jon tracker instance. */ public HadoopJobTracker jobTracker() { return jobTracker; } /** * @return Task executor. */ public HadoopTaskExecutorAdapter taskExecutor() { return taskExecutor; } /** * @return Shuffle. */ public HadoopShuffle shuffle() { return shuffle; } /** * @return Map-reduce planner. */ public HadoopMapReducePlanner planner() { return cfg.getMapReducePlanner(); } /** * Adds component. * * @param c Component to add. * @return Added manager. */ private <C extends HadoopComponent> C add(C c) { components.add(c); return c; } }
{ "content_hash": "11fd313d7b920262a8e979361d03a137", "timestamp": "", "source": "github", "line_count": 182, "max_line_length": 122, "avg_line_length": 23.192307692307693, "alnum_prop": 0.6008054963278844, "repo_name": "gridgain/apache-ignite", "id": "68f0bafbe072cada25e21dbd9eaa8017f0b803fb", "size": "5023", "binary": false, "copies": "1", "ref": "refs/heads/sprint-2", "path": "modules/hadoop/src/main/java/org/apache/ignite/internal/processors/hadoop/HadoopContext.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C#", "bytes": "4522" }, { "name": "C++", "bytes": "28098" }, { "name": "CSS", "bytes": "17209" }, { "name": "HTML", "bytes": "260837" }, { "name": "Java", "bytes": "17999177" }, { "name": "JavaScript", "bytes": "1085" }, { "name": "PHP", "bytes": "18446" }, { "name": "Scala", "bytes": "732170" }, { "name": "Scilab", "bytes": "3923545" }, { "name": "Shell", "bytes": "407266" } ], "symlink_target": "" }
=head1 LICENSE Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute Copyright [2016-2022] EMBL-European Bioinformatics Institute 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. =cut package EnsEMBL::Web::Component::Export::Alignments; use strict; use URI::Escape qw(uri_unescape); use EnsEMBL::Web::Constants; use base 'EnsEMBL::Web::Component::Export'; sub content { my $self = shift; my $hub = $self->hub; my $align = $hub->referer->{'params'}->{'align'}->[0]; my $params = { action => 'Location', type => 'Export/Output', function => 'Alignment', output => 'alignment', align => $align }; my $form = $self->modal_form('export_output_configuration', '#', { no_button => 1, method => 'get' }); $form->add_fieldset; if ($align) { my $href = uri_unescape($hub->url($params)); my %formats = EnsEMBL::Web::Constants::ALIGNMENT_FORMATS; my @list = map qq{<a class="modal_close" href="$href;format=$_;_format=Text" rel="external">$formats{$_}</a>}, sort keys %formats; $form->add_notes({ class => undef, text => 'Please choose a format for your exported data' }); $form->add_notes({ class => undef, list => \@list }); } else { $form->add_notes({ class => undef, text => 'Please choose an alignment to export on the main page' }); } return '<h2>Export Configuration - Genomic Alignments</h2>' . $form->render; } 1;
{ "content_hash": "86c7c8ccb5ecc3684c2b940bc14c1389", "timestamp": "", "source": "github", "line_count": 61, "max_line_length": 137, "avg_line_length": 32, "alnum_prop": 0.6700819672131147, "repo_name": "Ensembl/ensembl-webcode", "id": "3cda99128163a5cdfd59c6ffa75658e5bf9f3b0e", "size": "1952", "binary": false, "copies": "1", "ref": "refs/heads/release/108", "path": "modules/EnsEMBL/Web/Component/Export/Alignments.pm", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C", "bytes": "22238" }, { "name": "CSS", "bytes": "357082" }, { "name": "Elixir", "bytes": "99" }, { "name": "HTML", "bytes": "239145" }, { "name": "JavaScript", "bytes": "1088839" }, { "name": "Perl", "bytes": "7118006" }, { "name": "Raku", "bytes": "11199" }, { "name": "Shell", "bytes": "16094" }, { "name": "XS", "bytes": "315" }, { "name": "XSLT", "bytes": "35709" } ], "symlink_target": "" }
import mock from twisted.trial import unittest from buildbot.status import master, client from buildbot.test.fake import fakedb class TestStatusClientPerspective(unittest.TestCase): def makeStatusClientPersp(self): m = mock.Mock(name='master') self.db = m.db = fakedb.FakeDBConnector(self) m.basedir = r'C:\BASEDIR' s = master.Status(m) persp = client.StatusClientPerspective(s) return persp def test_getBuildSets(self): persp = self.makeStatusClientPersp() self.db.insertTestData([ fakedb.Buildset(id=91, sourcestampid=234, complete=0, complete_at=298297875, results=-1, submitted_at=266761875, external_idstring='extid', reason='rsn1'), ]) d = persp.perspective_getBuildSets() def check(bslist): self.assertEqual(len(bslist), 1) self.assertEqual(bslist[0][1], 91) self.failUnlessIsInstance(bslist[0][0], client.RemoteBuildSet) d.addCallback(check) return d
{ "content_hash": "3c4cd1447dfe73d5d5189afa547179d0", "timestamp": "", "source": "github", "line_count": 31, "max_line_length": 78, "avg_line_length": 34.354838709677416, "alnum_prop": 0.6356807511737089, "repo_name": "eunchong/build", "id": "7a4a606dcb73639d2415612682c49f89bfb7c9fa", "size": "1771", "binary": false, "copies": "4", "ref": "refs/heads/master", "path": "third_party/buildbot_8_4p1/buildbot/test/unit/test_status_client.py", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "Batchfile", "bytes": "3128" }, { "name": "CSS", "bytes": "211818" }, { "name": "HTML", "bytes": "429981" }, { "name": "JavaScript", "bytes": "75624" }, { "name": "Makefile", "bytes": "21204" }, { "name": "Python", "bytes": "6143109" }, { "name": "Shell", "bytes": "23512" } ], "symlink_target": "" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (version 1.7.0_03) on Wed May 01 12:49:30 CEST 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Interface net.sourceforge.pmd.lang.DataFlowHandler (PMD 5.0.4 API)</title> <meta name="date" content="2013-05-01"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface net.sourceforge.pmd.lang.DataFlowHandler (PMD 5.0.4 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="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?net/sourceforge/pmd/lang//class-useDataFlowHandler.html" target="_top">Frames</a></li> <li><a href="DataFlowHandler.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 net.sourceforge.pmd.lang.DataFlowHandler" class="title">Uses of Interface<br>net.sourceforge.pmd.lang.DataFlowHandler</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="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</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="#net.sourceforge.pmd.lang">net.sourceforge.pmd.lang</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#net.sourceforge.pmd.lang.dfa">net.sourceforge.pmd.lang.dfa</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#net.sourceforge.pmd.lang.java">net.sourceforge.pmd.lang.java</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#net.sourceforge.pmd.lang.java.dfa">net.sourceforge.pmd.lang.java.dfa</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="net.sourceforge.pmd.lang"> <!-- --> </a> <h3>Uses of <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a> in <a href="../../../../../net/sourceforge/pmd/lang/package-summary.html">net.sourceforge.pmd.lang</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../net/sourceforge/pmd/lang/package-summary.html">net.sourceforge.pmd.lang</a> declared as <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</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>static <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></code></td> <td class="colLast"><span class="strong">DataFlowHandler.</span><code><strong><a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html#DUMMY">DUMMY</a></strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../net/sourceforge/pmd/lang/package-summary.html">net.sourceforge.pmd.lang</a> that return <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></code></td> <td class="colLast"><span class="strong">AbstractLanguageVersionHandler.</span><code><strong><a href="../../../../../net/sourceforge/pmd/lang/AbstractLanguageVersionHandler.html#getDataFlowHandler()">getDataFlowHandler</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></code></td> <td class="colLast"><span class="strong">LanguageVersionHandler.</span><code><strong><a href="../../../../../net/sourceforge/pmd/lang/LanguageVersionHandler.html#getDataFlowHandler()">getDataFlowHandler</a></strong>()</code> <div class="block">Get the DataFlowHandler.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="net.sourceforge.pmd.lang.dfa"> <!-- --> </a> <h3>Uses of <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a> in <a href="../../../../../net/sourceforge/pmd/lang/dfa/package-summary.html">net.sourceforge.pmd.lang.dfa</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../net/sourceforge/pmd/lang/dfa/package-summary.html">net.sourceforge.pmd.lang.dfa</a> with parameters of type <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../net/sourceforge/pmd/lang/dfa/Linker.html#Linker(net.sourceforge.pmd.lang.DataFlowHandler, java.util.List, java.util.List)">Linker</a></strong>(<a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a>&nbsp;dataFlowHandler, <a href="http://download.oracle.com/javase/1.5.0/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../net/sourceforge/pmd/lang/dfa/StackObject.html" title="class in net.sourceforge.pmd.lang.dfa">StackObject</a>&gt;&nbsp;braceStack, <a href="http://download.oracle.com/javase/1.5.0/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../net/sourceforge/pmd/lang/dfa/StackObject.html" title="class in net.sourceforge.pmd.lang.dfa">StackObject</a>&gt;&nbsp;continueBreakReturnStack)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colLast"><code><strong><a href="../../../../../net/sourceforge/pmd/lang/dfa/Structure.html#Structure(net.sourceforge.pmd.lang.DataFlowHandler)">Structure</a></strong>(<a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a>&nbsp;dataFlowHandler)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="net.sourceforge.pmd.lang.java"> <!-- --> </a> <h3>Uses of <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a> in <a href="../../../../../net/sourceforge/pmd/lang/java/package-summary.html">net.sourceforge.pmd.lang.java</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../net/sourceforge/pmd/lang/java/package-summary.html">net.sourceforge.pmd.lang.java</a> that implement <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../net/sourceforge/pmd/lang/java/JavaDataFlowHandler.html" title="class in net.sourceforge.pmd.lang.java">JavaDataFlowHandler</a></strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../net/sourceforge/pmd/lang/java/package-summary.html">net.sourceforge.pmd.lang.java</a> that return <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></code></td> <td class="colLast"><span class="strong">AbstractJavaHandler.</span><code><strong><a href="../../../../../net/sourceforge/pmd/lang/java/AbstractJavaHandler.html#getDataFlowHandler()">getDataFlowHandler</a></strong>()</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="net.sourceforge.pmd.lang.java.dfa"> <!-- --> </a> <h3>Uses of <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a> in <a href="../../../../../net/sourceforge/pmd/lang/java/dfa/package-summary.html">net.sourceforge.pmd.lang.java.dfa</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../net/sourceforge/pmd/lang/java/dfa/package-summary.html">net.sourceforge.pmd.lang.java.dfa</a> with parameters of type <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">DataFlowFacade.</span><code><strong><a href="../../../../../net/sourceforge/pmd/lang/java/dfa/DataFlowFacade.html#initializeWith(net.sourceforge.pmd.lang.DataFlowHandler, net.sourceforge.pmd.lang.java.ast.ASTCompilationUnit)">initializeWith</a></strong>(<a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a>&nbsp;dataFlowHandler, <a href="../../../../../net/sourceforge/pmd/lang/java/ast/ASTCompilationUnit.html" title="class in net.sourceforge.pmd.lang.java.ast">ASTCompilationUnit</a>&nbsp;node)</code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../net/sourceforge/pmd/lang/java/dfa/package-summary.html">net.sourceforge.pmd.lang.java.dfa</a> with parameters of type <a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../net/sourceforge/pmd/lang/java/dfa/StatementAndBraceFinder.html#StatementAndBraceFinder(net.sourceforge.pmd.lang.DataFlowHandler)">StatementAndBraceFinder</a></strong>(<a href="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">DataFlowHandler</a>&nbsp;dataFlowHandler)</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="../../../../../net/sourceforge/pmd/lang/DataFlowHandler.html" title="interface in net.sourceforge.pmd.lang">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?net/sourceforge/pmd/lang//class-useDataFlowHandler.html" target="_top">Frames</a></li> <li><a href="DataFlowHandler.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://pmd.sourceforge.net/">InfoEther</a>. All Rights Reserved.</small></p> </body> </html>
{ "content_hash": "e49d4c28c0ffbf5574b9a4c4aec69e5a", "timestamp": "", "source": "github", "line_count": 270, "max_line_length": 453, "avg_line_length": 58.422222222222224, "alnum_prop": 0.6768733358691518, "repo_name": "jmagas/RedditDailyProgrammer", "id": "c795888f2b64f9ce172d5da93190312624298d0b", "size": "15774", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "lib/pmd-bin-5.0.4/docs/apidocs/net/sourceforge/pmd/lang/class-use/DataFlowHandler.html", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "49573" }, { "name": "Java", "bytes": "542603" }, { "name": "JavaScript", "bytes": "7987" }, { "name": "Perl", "bytes": "1836" }, { "name": "XSLT", "bytes": "114364" } ], "symlink_target": "" }
require 'pp' module JiraProfiler # For Sprint # Report sprint profiles - For each sprint # number of issues at start # number of issues at end # number of issues added # number of issues completed vs not completed # points added # points completed vs not completed # Report elapsed time # between issues status transitions # for entire story # for each point Size across team # for each point Size by team member # Report ratio of # type of issues (stories vs defects) # epics # tags # Developer # # of stories # # of points # # of days # # of incomplete # AVG Time spent in development # AVG Time spent in review # AVG Time spent in QA # # of Scheduled # # non-scheduled # AVG Time spent on scheduled # AVG Time spent in non-scheduled # Issue Type # # # Sizes # # Histogram # Status # # Entered # # Exited # Elapsed Time # Points at start # Points at end class Sprint < JiraApiBase include Logger attr_reader :project, :id, :name, :current_state, :start_date, :end_date, :complete_date, :completed_issues, :incomplete_issues, :punted_issues, :pulled_in_issues, :all_pts, :completed_pts, :incomplete_pts, :punted_pts, :pulled_in_pts # The list of sprints which are recorded in Jira (note, these dates may not be reliable if Jira isn't maintained religously) def initialize(options) @project = options[:project] @id = options[:id] @name = options[:name] @start_date = options.fetch(:start_date) @end_date = options.fetch(:end_date) @note = options.fetch(:note) # Get list of issues in a sprint # /rest/api/latest/search?jql=sprint%3D<SPRINT_ID>&fields=<FIELDS YOU WANT>&maxResults=<SOME REASONABLE LIMIT> # Get sprint stats jira_sprint = self.class.get("/rest/greenhopper/1.0/rapid/charts/sprintreport?rapidViewId=#{project.id}&sprintId=#{id}") metadata = jira_sprint['sprint'] contents = jira_sprint['contents'] # Pulled in stories have to be queried separately pulled_in_issues = contents['issueKeysAddedDuringSprint'] pulled_in_pts = 0 pulled_in_issues.keys.each do |issue_key| issue = self.class.get("/rest/api/2/issue/#{issue_key}")['fields'] pts = issue['customfield_10004'].nil? ? 0 : issue['customfield_10004'].to_f pulled_in_pts += pts end # "issuesCompletedInAnotherSprint"=>[], # "completedIssuesInitialEstimateSum"=>{"text"=>"null"}, # "completedIssuesEstimateSum"=>{"text"=>"null"}, # "issuesNotCompletedInitialEstimateSum"=>{"value"=>1.0, "text"=>"1.0"}, # "issuesNotCompletedEstimateSum"=>{"value"=>1.0, "text"=>"1.0"}, # "allIssuesEstimateSum"=>{"value"=>1.0, "text"=>"1.0"}, # "puntedIssuesInitialEstimateSum"=>{"text"=>"null"}, # "puntedIssuesEstimateSum"=>{"text"=>"null"}, # "issuesCompletedInAnotherSprintInitialEstimateSum"=>{"text"=>"null"}, # "issuesCompletedInAnotherSprintEstimateSum"=>{"text"=>"null"}, # "issueKeysAddedDuringSprint"=>{"WS-132"=>true}} # Save sprint metadata @name = metadata['name'] @current_state = metadata['state'] @start_date = Date.parse(metadata["startDate"]) unless metadata["startDate"] == 'None' # "09/Jun/15 2:47 PM" @end_date = Date.parse(metadata["endDate"]) unless metadata["endDate"] == 'None' # "22/Jun/15 2:47 PM" @complete_date = Date.parse(metadata["completeDate"]) unless metadata["completeDate"] == 'None' # "None" @completed_issues = contents['completedIssues'] @incomplete_issues = contents['incompletedIssues'] @punted_issues = contents['puntedIssues'] @pulled_in_issues = contents['issueKeysAddedDuringSprint'] @all_pts = contents['allIssuesEstimateSum']['value'].to_f @completed_pts = contents['completedIssuesEstimateSum']['value'].to_f @incomplete_pts = contents['issuesNotCompletedEstimateSum']['value'].to_f @punted_pts = contents['puntedIssuesEstimateSum']['value'].to_f @pulled_in_pts = pulled_in_pts @activity = { :assignees => {}, :issue_types => {}, :calendar => ActiveSupport::OrderedHash.new() } end # The number of days in the sprint def length end_date.days_from(start_date).to_i end def activity end def completed_count completed_issues.size end def incomplete_count incomplete_issues.size end def punted_count punted_issues.size end def pulled_in_issues_count pulled_in_issues.size end # Return number of bugs, stories, tasks # def issue_types # end # # def planned_work # end # # def unplanned_work # end # # def expansion # end # # def creep # end end end
{ "content_hash": "cb629bea62ae42cd13db1064fe5d10ae", "timestamp": "", "source": "github", "line_count": 166, "max_line_length": 128, "avg_line_length": 30.759036144578314, "alnum_prop": 0.6057579318448884, "repo_name": "jwtd/jira-profiler", "id": "d31377fec2a010efc9f10e75960115fd6dc5ff31", "size": "5106", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "lib/jira-profiler/sprint.rb", "mode": "33188", "license": "mit", "language": [ { "name": "Ruby", "bytes": "76310" }, { "name": "Shell", "bytes": "115" } ], "symlink_target": "" }
<!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_75) on Mon May 04 10:46:00 PDT 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class com.hellosign.sdk.resource.support.SignatureRequestList (HelloSign Java SDK 3.1.2 API)</title> <meta name="date" content="2015-05-04"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.hellosign.sdk.resource.support.SignatureRequestList (HelloSign Java SDK 3.1.2 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/hellosign/sdk/resource/support/SignatureRequestList.html" title="class in com.hellosign.sdk.resource.support">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/hellosign/sdk/resource/support/class-use/SignatureRequestList.html" target="_top">Frames</a></li> <li><a href="SignatureRequestList.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.hellosign.sdk.resource.support.SignatureRequestList" class="title">Uses of Class<br>com.hellosign.sdk.resource.support.SignatureRequestList</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/hellosign/sdk/resource/support/SignatureRequestList.html" title="class in com.hellosign.sdk.resource.support">SignatureRequestList</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.hellosign.sdk">com.hellosign.sdk</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.hellosign.sdk"> <!-- --> </a> <h3>Uses of <a href="../../../../../../com/hellosign/sdk/resource/support/SignatureRequestList.html" title="class in com.hellosign.sdk.resource.support">SignatureRequestList</a> in <a href="../../../../../../com/hellosign/sdk/package-summary.html">com.hellosign.sdk</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../com/hellosign/sdk/package-summary.html">com.hellosign.sdk</a> that return <a href="../../../../../../com/hellosign/sdk/resource/support/SignatureRequestList.html" title="class in com.hellosign.sdk.resource.support">SignatureRequestList</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../com/hellosign/sdk/resource/support/SignatureRequestList.html" title="class in com.hellosign.sdk.resource.support">SignatureRequestList</a></code></td> <td class="colLast"><span class="strong">HelloSignClient.</span><code><strong><a href="../../../../../../com/hellosign/sdk/HelloSignClient.html#getSignatureRequests()">getSignatureRequests</a></strong>()</code> <div class="block">Retrieves the current user's signature requests.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../com/hellosign/sdk/resource/support/SignatureRequestList.html" title="class in com.hellosign.sdk.resource.support">SignatureRequestList</a></code></td> <td class="colLast"><span class="strong">HelloSignClient.</span><code><strong><a href="../../../../../../com/hellosign/sdk/HelloSignClient.html#getSignatureRequests(int)">getSignatureRequests</a></strong>(int&nbsp;page)</code> <div class="block">Retrieves a specific page of the current user's signature requests.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../com/hellosign/sdk/resource/support/SignatureRequestList.html" title="class in com.hellosign.sdk.resource.support">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/hellosign/sdk/resource/support/class-use/SignatureRequestList.html" target="_top">Frames</a></li> <li><a href="SignatureRequestList.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; 2015 <a href="https://www.hellosign.com/">HelloSign</a>. All rights reserved.</small></p> </body> </html>
{ "content_hash": "4a46f740203aaeacc30753479ec4e06e", "timestamp": "", "source": "github", "line_count": 165, "max_line_length": 343, "avg_line_length": 44.57575757575758, "alnum_prop": 0.6496261046906866, "repo_name": "cmpaul/jellosign", "id": "888988b939943b0aab98096ccb7ae90384a7caa9", "size": "7355", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/test/webapp/javadoc/com/hellosign/sdk/resource/support/class-use/SignatureRequestList.html", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "2042" }, { "name": "Java", "bytes": "75663" }, { "name": "JavaScript", "bytes": "7672" } ], "symlink_target": "" }
@interface Account : NSObject @property (nonatomic, strong) NSString * id; @property (nonatomic, strong) NSString * name; @property (nonatomic, strong) NSDate * lastModifiedDate; @property (nonatomic, strong) NSString * phone; @property (nonatomic, strong) NSString * industry; @property (nonatomic, strong) NSString * accountNumber; @property (nonatomic, strong) NSNumber * syncFlag; @property (nonatomic, strong) NSArray *contact; @end
{ "content_hash": "ca93a61c8206da303b594e33f5e5f90a", "timestamp": "", "source": "github", "line_count": 10, "max_line_length": 56, "avg_line_length": 43.8, "alnum_prop": 0.7648401826484018, "repo_name": "Pnayak156/SalesforceiOS", "id": "fd158572d9bd637d53449f5514dc092b6d042fee", "size": "622", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "SalesforceiOSUniversal/Classes/Account.h", "mode": "33188", "license": "mit", "language": [ { "name": "C", "bytes": "1362038" }, { "name": "C++", "bytes": "117767" }, { "name": "Objective-C", "bytes": "741035" } ], "symlink_target": "" }
import React from 'react'; import { gettext, siteRoot } from '../../utils/constants'; const { defaultDevice, backupTokens } = window.app.pageOptions; class TwoFactorAuthentication extends React.Component { constructor(props) { super(props); } renderEnabled = () => { return ( <React.Fragment> <p className="mb-2">{gettext('Status: enabled')}</p> <a className="btn btn-outline-primary mb-4" href={`${siteRoot}profile/two_factor_authentication/disable/`}> {gettext('Disable Two-Factor Authentication')}</a> <p className="mb-2"> {gettext('If you don\'t have any device with you, you can access your account using backup codes.')} {backupTokens == 1 ? gettext('You have only one backup code remaining.') : gettext('You have {num} backup codes remaining.').replace('{num}', backupTokens)} </p> <a href={`${siteRoot}profile/two_factor_authentication/backup/tokens/`} className="btn btn-outline-primary">{gettext('Show Codes')}</a> </React.Fragment> ); } renderDisabled = () => { return ( <React.Fragment> <p className="mb-2">{gettext('Two-factor authentication is not enabled for your account. Enable two-factor authentication for enhanced account security.')}</p> <a href={`${siteRoot}profile/two_factor_authentication/setup/`} className="btn btn-outline-primary"> {gettext('Enable Two-Factor Authentication')}</a> </React.Fragment> ); } render() { return ( <div className="setting-item" id="two-factor-auth"> <h3 className="setting-item-heading">{gettext('Two-Factor Authentication')}</h3> {defaultDevice ? this.renderEnabled() : this.renderDisabled()} </div> ); } } export default TwoFactorAuthentication;
{ "content_hash": "2fa65d20c2d19e686c63fcdafa19a240", "timestamp": "", "source": "github", "line_count": 52, "max_line_length": 167, "avg_line_length": 35.15384615384615, "alnum_prop": 0.6389496717724289, "repo_name": "miurahr/seahub", "id": "25c70312ae1d01d28a66e2b061952a2473e3ad2e", "size": "1828", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "frontend/src/components/user-settings/two-factor-auth.js", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "231001" }, { "name": "HTML", "bytes": "750509" }, { "name": "JavaScript", "bytes": "2430915" }, { "name": "Python", "bytes": "1500021" }, { "name": "Shell", "bytes": "8856" } ], "symlink_target": "" }
module.exports = function(config) { config.set({ // base path that will be used to resolve all patterns (eg. files, exclude) basePath: '', // frameworks to use // available frameworks: https://npmjs.org/browse/keyword/karma-adapter frameworks: ['jasmine'], // list of files / patterns to load in the browser files: [ 'components/angular/angular.js', 'components/angular-mocks/angular-mocks.js', 'src/*.js', 'test/*.js' ], // list of files to exclude exclude: [ ], // preprocess matching files before serving them to the browser // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { }, // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter reporters: ['progress', 'html'], htmlReporter: { outputFile: 'test/results.html' }, // web server port port: 9876, // enable / disable colors in the output (reporters and logs) colors: true, // level of logging // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG logLevel: config.LOG_INFO, // enable / disable watching file and executing tests whenever any file changes autoWatch: true, // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher browsers: ['Firefox'], // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits singleRun: true, // Concurrency level // how many browser should be started simultaneous concurrency: Infinity }) }
{ "content_hash": "f576d41dea092af2ff9d2e9767a38ba0", "timestamp": "", "source": "github", "line_count": 72, "max_line_length": 120, "avg_line_length": 24.416666666666668, "alnum_prop": 0.6581342434584755, "repo_name": "mkftrivadis/sort", "id": "281c749f9f50f54af46dec3f50f15259f0345789", "size": "1858", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "karma.conf.js", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "184" }, { "name": "JavaScript", "bytes": "18700" } ], "symlink_target": "" }
<?php namespace CKSource\CKFinder; use CKSource\CKFinder\Exception\CKFinderException; use Psr\Log\LoggerInterface; use Symfony\Component\Debug; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; use Symfony\Component\HttpKernel\KernelEvents; use CKSource\CKFinder\Response\JsonResponse; use \Symfony\Component\HttpKernel\Exception\HttpException; /** * The exception handler class. * * All errors are resolved here and passed to the response. * * @copyright 2015 CKSource - Frederico Knabben */ class ExceptionHandler implements EventSubscriberInterface { /** * Flag used to enable the debug mode. * * @var bool $debug */ protected $debug; /** * LoggerInterface * * @var LoggerInterface $logger */ protected $logger; protected $translator; /** * Constructor. * * @param Translator $translator translator object * @param bool $debug `true` if debug mode is enabled * @param LoggerInterface $logger logger */ public function __construct(Translator $translator, $debug = false, LoggerInterface $logger = null) { $this->translator = $translator; $this->debug = $debug; $this->logger = $logger; if ($debug) { set_error_handler(array($this, 'errorHandler')); } } public function onCKFinderError(GetResponseForExceptionEvent $event) { $exception = $event->getException(); $exceptionCode = $exception->getCode() ?: Error::UNKNOWN; $replacements = array(); $httpStatusCode = 200; if ($exception instanceof CKFinderException) { $replacements = $exception->getParameters(); $httpStatusCode = $exception->getHttpStatusCode(); } $message = $exceptionCode === Error::CUSTOM_ERROR ? $exception->getMessage() : $this->translator->translateErrorMessage($exceptionCode, $replacements); $response = JsonResponse::create()->withError($exceptionCode, $message); $event->setException(new HttpException($httpStatusCode)); $event->setResponse($response); if ($this->debug && $this->logger) { $this->logger->error($exception); } if (filter_var(ini_get('display_errors'), FILTER_VALIDATE_BOOLEAN)) { throw $exception; } } /** * Custom error handler to catch all errors in the debug mode. * * @param int $errno * @param string $errstr * @param string $errfile * @param int $errline * * @throws \Exception */ public function errorHandler($errno, $errstr, $errfile, $errline) { $wrapperException = new \ErrorException($errstr, 0, $errno, $errfile, $errline); $this->logger->warning($wrapperException); if (filter_var(ini_get('display_errors'), FILTER_VALIDATE_BOOLEAN)) { throw $wrapperException; } } /** * Returns all events and callbacks. * * @see <a href="http://api.symfony.com/2.5/Symfony/Component/EventDispatcher/EventSubscriberInterface.html">EventSubscriberInterface</a> * * @return array */ public static function getSubscribedEvents() { return array(KernelEvents::EXCEPTION => array('onCKFinderError', -255)); } }
{ "content_hash": "dbc92e4be1d626b72bc3e01e4159df8d", "timestamp": "", "source": "github", "line_count": 125, "max_line_length": 141, "avg_line_length": 27.792, "alnum_prop": 0.6243523316062176, "repo_name": "yohitan12/foctopus", "id": "108cd0667098b6cd709401efb5c277df2e47d0c6", "size": "3901", "binary": false, "copies": "9", "ref": "refs/heads/master", "path": "public/ckeditor/ckfinder/core/connector/php/vendor/cksource/ckfinder/src/CKSource/CKFinder/ExceptionHandler.php", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "ApacheConf", "bytes": "1359" }, { "name": "CSS", "bytes": "805785" }, { "name": "HTML", "bytes": "296641" }, { "name": "JavaScript", "bytes": "2454876" }, { "name": "PHP", "bytes": "98436" } ], "symlink_target": "" }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>CHECKING constant - ApplicationCache class - polymer_app_layout.behaviors library - Dart API</title> <!-- required because all the links are pseudo-absolute --> <base href="../.."> <link href='https://fonts.googleapis.com/css?family=Source+Code+Pro|Roboto:500,400italic,300,400' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="static-assets/prettify.css"> <link rel="stylesheet" href="static-assets/css/bootstrap.min.css"> <link rel="stylesheet" href="static-assets/styles.css"> <meta name="description" content="API docs for the CHECKING constant from the ApplicationCache class, for the Dart programming language."> <link rel="icon" href="static-assets/favicon.png"> <!-- Do not remove placeholder --> <!-- Header Placeholder --> </head> <body> <div id="overlay-under-drawer"></div> <header class="container-fluid" id="title"> <nav class="navbar navbar-fixed-top"> <div class="container"> <button id="sidenav-left-toggle" type="button">&nbsp;</button> <ol class="breadcrumbs gt-separated hidden-xs"> <li><a href="index.html">polymer_app_layout_template</a></li> <li><a href="polymer_app_layout.behaviors/polymer_app_layout.behaviors-library.html">polymer_app_layout.behaviors</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache-class.html">ApplicationCache</a></li> <li class="self-crumb">CHECKING</li> </ol> <div class="self-name">CHECKING</div> </div> </nav> <div class="container masthead"> <ol class="breadcrumbs gt-separated visible-xs"> <li><a href="index.html">polymer_app_layout_template</a></li> <li><a href="polymer_app_layout.behaviors/polymer_app_layout.behaviors-library.html">polymer_app_layout.behaviors</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache-class.html">ApplicationCache</a></li> <li class="self-crumb">CHECKING</li> </ol> <div class="title-description"> <h1 class="title"> <div class="kind">constant</div> CHECKING </h1> <!-- p class="subtitle"> </p --> </div> <ul class="subnav"> </ul> </div> </header> <div class="container body"> <div class="col-xs-6 col-sm-3 sidebar sidebar-offcanvas-left"> <h5><a href="index.html">polymer_app_layout_template</a></h5> <h5><a href="polymer_app_layout.behaviors/polymer_app_layout.behaviors-library.html">polymer_app_layout.behaviors</a></h5> <h5><a href="polymer_app_layout.behaviors/ApplicationCache-class.html">ApplicationCache</a></h5> <ol> <li class="section-title"><a href="polymer_app_layout.behaviors/ApplicationCache-class.html#constants">Constants</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/cachedEvent.html">cachedEvent</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/CHECKING.html">CHECKING</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/checkingEvent.html">checkingEvent</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/DOWNLOADING.html">DOWNLOADING</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/downloadingEvent.html">downloadingEvent</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/errorEvent.html">errorEvent</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/IDLE.html">IDLE</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/noUpdateEvent.html">noUpdateEvent</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/OBSOLETE.html">OBSOLETE</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/obsoleteEvent.html">obsoleteEvent</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/progressEvent.html">progressEvent</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/UNCACHED.html">UNCACHED</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/UPDATEREADY.html">UPDATEREADY</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/updateReadyEvent.html">updateReadyEvent</a></li> <li class="section-title"><a href="polymer_app_layout.behaviors/ApplicationCache-class.html#static-properties">Static properties</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/supported.html">supported</a></li> <li class="section-title"><a href="polymer_app_layout.behaviors/ApplicationCache-class.html#instance-properties">Properties</a></li> <li>on </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/onCached.html">onCached</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/onChecking.html">onChecking</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/onDownloading.html">onDownloading</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/onError.html">onError</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/onNoUpdate.html">onNoUpdate</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/onObsolete.html">onObsolete</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/onProgress.html">onProgress</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/onUpdateReady.html">onUpdateReady</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/status.html">status</a> </li> <li class="section-title"><a href="polymer_app_layout.behaviors/ApplicationCache-class.html#methods">Methods</a></li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/abort.html">abort</a> </li> <li>addEventListener </li> <li>dispatchEvent </li> <li>removeEventListener </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/swapCache.html">swapCache</a> </li> <li><a href="polymer_app_layout.behaviors/ApplicationCache/update.html">update</a> </li> </ol> </div><!--/.sidebar-offcanvas-left--> <div class="col-xs-12 col-sm-9 col-md-6 main-content"> <section class="multi-line-signature"> <span class="returntype">int</span> <span class="name ">CHECKING</span> = <span class="constant-value">2</span> </section> <section class="desc markdown"> <p class="no-docs">Not documented.</p> </section> </div> <!-- /.main-content --> </div> <!-- container --> <footer> <div class="container-fluid"> <div class="container"> <p class="text-center"> <span class="no-break"> polymer_app_layout_template 0.1.0 api docs </span> &bull; <span class="copyright no-break"> <a href="https://www.dartlang.org"> <img src="static-assets/favicon.png" alt="Dart" title="Dart"width="16" height="16"> </a> </span> &bull; <span class="copyright no-break"> <a href="http://creativecommons.org/licenses/by-sa/4.0/">cc license</a> </span> </p> </div> </div> </footer> <script src="static-assets/prettify.js"></script> <script src="static-assets/script.js"></script> <!-- Do not remove placeholder --> <!-- Footer Placeholder --> </body> </html>
{ "content_hash": "faa326102da4179be7a9db7615c768b8", "timestamp": "", "source": "github", "line_count": 176, "max_line_length": 143, "avg_line_length": 44.61363636363637, "alnum_prop": 0.6453132959755477, "repo_name": "lejard-h/polymer_app_layout_templates", "id": "bcb79b69abf69911cfc9745a7784c9ddcc619d60", "size": "7852", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "doc/api/polymer_app_layout.behaviors/ApplicationCache/CHECKING.html", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "CSS", "bytes": "2381" }, { "name": "Dart", "bytes": "25778" }, { "name": "HTML", "bytes": "17680" } ], "symlink_target": "" }
[Network UPS Tools](http://networkupstools.org/) can be used to control and manage several power devices like [Uninterruptible Power Supplies](https://en.wikipedia.org/wiki/Uninterruptible_power_supply). This [Hass.io](https://home-assistant.io/hassio/) plugin provides the nessecary daemon to make use of the [Home Assistant NUT Sensor](https://home-assistant.io/components/sensor.nut/). The default configuration should work with any [usbhid-ups](http://networkupstools.org/docs/man/usbhid-ups.html) compatible UPS. They can be added to `configuration.yaml` by adding: ``` sensor - platform: nut username: nut password: nut resources: - ups.load - ups.status [...] ``` The resources vary depending on your UPS vendor/model. All supported USB UPS should work using one of the [USB drivers](http://networkupstools.org/stable-hcl.html) as well. Due to the lack of hardware some code changes might be neccessary in order to get serial or network UPS connections to work. Requests, feedback and pull request are welcome.
{ "content_hash": "2f46627bc6c750b1f570689b33b23293", "timestamp": "", "source": "github", "line_count": 21, "max_line_length": 388, "avg_line_length": 50.333333333333336, "alnum_prop": 0.7511825922421949, "repo_name": "asciinaut/hassio-addons", "id": "21fb28d913ea94c2174dba1513c15efe9283937d", "size": "1091", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "nut/README.md", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Shell", "bytes": "1716" } ], "symlink_target": "" }
RSpec.describe Licensee::ProjectFiles::ReadmeFile do let(:filename) { 'README.md' } let(:content) { '' } subject { described_class.new(content, filename) } context 'scoring names' do { 'readme' => 1.0, 'README' => 1.0, 'readme.md' => 0.9, 'README.md' => 0.9, 'readme.txt' => 0.9, 'readme.mdown' => 0.9, 'readme.rdoc' => 0.9, 'readme.rst' => 0.9, 'LICENSE' => 0.0 }.each do |filename, expected_score| context "with a file named #{filename}" do let(:score) { described_class.name_score(filename) } it 'scores the file' do expect(score).to eql(expected_score) end end end end context 'parsing license content' do let(:license) { described_class.license_content(content) } context 'with no license' do let(:content) { 'There is no License in this README' } it 'returns no content' do expect(license).to be_nil end end context 'after an H1' do let(:content) { "# License\n\nhello world" } it 'returns the license' do expect(license).to eql('hello world') end end context 'after an H2' do let(:content) { "## License\n\nhello world" } it 'returns the license' do expect(license).to eql('hello world') end end context 'after an underlined header' do let(:content) { "License\n-------\n\nhello world" } it 'returns the license' do expect(license).to eql('hello world') end end context 'With a strangely cased heading' do let(:content) { "## LICENSE\n\nhello world" } it 'returns the license' do expect(license).to eql('hello world') end end context 'With british spelling' do let(:content) { "## Licence\n\nhello world" } it 'returns the license' do expect(license).to eql('hello world') end end context 'with trailing content' do let(:content) { "## License\n\nhello world\n\n# Contributing" } it 'returns the license' do expect(license).to eql('hello world') end end context 'with trailing content that has an underlined header' do let(:content) { "# License\n\nhello world\n\nContributing\n====" } it 'returns the license' do expect(license).to eql('hello world') end end context 'with trailing content that has a hashes-based header' do let(:content) { "# License\n\nhello world\n\n# Contributing" } it 'returns the license' do expect(license).to eql('hello world') end end context 'With a trailing colon' do let(:content) { "## License:\n\nhello world" } it 'returns the license' do expect(license).to eql('hello world') end end context 'With trailing hashes' do let(:content) { "## License ##\n\nhello world" } it 'returns the license' do expect(license).to eql('hello world') end end context 'Rdoc' do let(:content) { "== License:\n\nhello world" } it 'returns the license' do expect(license).to eql('hello world') end end end context 'a license reference' do let(:content) { 'The MIT License' } let(:mit) { Licensee::License.find('mit') } it 'matches' do expect(subject.match).to eql(mit) end end end
{ "content_hash": "419c1774f969e52fb4d38c9564b495dc", "timestamp": "", "source": "github", "line_count": 136, "max_line_length": 72, "avg_line_length": 25.16176470588235, "alnum_prop": 0.5809468147282291, "repo_name": "pchaigno/licensee", "id": "a39b52be2750efb9fb25cfd2fac2c291e49ef043", "size": "3422", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "spec/licensee/project_files/readme_file_spec.rb", "mode": "33188", "license": "mit", "language": [ { "name": "Ruby", "bytes": "152547" }, { "name": "Shell", "bytes": "1828" } ], "symlink_target": "" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_45) on Thu Oct 13 19:29:17 UTC 2016 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Interface liquibase.database.Database (Liquibase Core 3.5.3 API) </TITLE> <META NAME="date" CONTENT="2016-10-13"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface liquibase.database.Database (Liquibase Core 3.5.3 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="../../../liquibase/database/Database.html" title="interface in liquibase.database"><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="../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#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?liquibase/database//class-useDatabase.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Database.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 Interface<br>liquibase.database.Database</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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase"><B>liquibase</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.change"><B>liquibase.change</B></A></TD> <TD>The change package contains the available database "changes".&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.change.core"><B>liquibase.change.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.change.custom"><B>liquibase.change.custom</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.changelog"><B>liquibase.changelog</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.changelog.filter"><B>liquibase.changelog.filter</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.changelog.visitor"><B>liquibase.changelog.visitor</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.command"><B>liquibase.command</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.common.datatype"><B>liquibase.common.datatype</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.database"><B>liquibase.database</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.database.core"><B>liquibase.database.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.database.jvm"><B>liquibase.database.jvm</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.datatype"><B>liquibase.datatype</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.datatype.core"><B>liquibase.datatype.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.dbdoc"><B>liquibase.dbdoc</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.diff"><B>liquibase.diff</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.diff.compare"><B>liquibase.diff.compare</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.diff.compare.core"><B>liquibase.diff.compare.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.diff.core"><B>liquibase.diff.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.diff.output"><B>liquibase.diff.output</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.diff.output.changelog"><B>liquibase.diff.output.changelog</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.diff.output.changelog.core"><B>liquibase.diff.output.changelog.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.exception"><B>liquibase.exception</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.executor"><B>liquibase.executor</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.integration.ant"><B>liquibase.integration.ant</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.integration.ant.type"><B>liquibase.integration.ant.type</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.integration.commandline"><B>liquibase.integration.commandline</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.integration.spring"><B>liquibase.integration.spring</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.lockservice"><B>liquibase.lockservice</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.precondition"><B>liquibase.precondition</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.precondition.core"><B>liquibase.precondition.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.sdk.database"><B>liquibase.sdk.database</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.serializer.core.formattedsql"><B>liquibase.serializer.core.formattedsql</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.snapshot"><B>liquibase.snapshot</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.snapshot.jvm"><B>liquibase.snapshot.jvm</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.sql.visitor"><B>liquibase.sql.visitor</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.sqlgenerator"><B>liquibase.sqlgenerator</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.sqlgenerator.core"><B>liquibase.sqlgenerator.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.statement"><B>liquibase.statement</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.statement.core"><B>liquibase.statement.core</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.structure"><B>liquibase.structure</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.util"><B>liquibase.util</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#liquibase.util.ui"><B>liquibase.util.ui</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/package-summary.html">liquibase</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">Fields in <A HREF="../../../liquibase/package-summary.html">liquibase</A> declared as <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>Liquibase.</B><B><A HREF="../../../liquibase/Liquibase.html#database">database</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="../../../liquibase/package-summary.html">liquibase</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>Liquibase.</B><B><A HREF="../../../liquibase/Liquibase.html#getDatabase()">getDatabase</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the Database used by this Liquibase instance.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>RuntimeEnvironment.</B><B><A HREF="../../../liquibase/RuntimeEnvironment.html#getTargetDatabase()">getTargetDatabase</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="../../../liquibase/package-summary.html">liquibase</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/CatalogAndSchema.html" title="class in liquibase">CatalogAndSchema</A></CODE></FONT></TD> <TD><CODE><B>CatalogAndSchema.</B><B><A HREF="../../../liquibase/CatalogAndSchema.html#customize(liquibase.database.Database)">customize</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new CatalogAndSchema object with null/default catalog and schema names set to the correct default catalog and schema.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/diff/DiffResult.html" title="class in liquibase.diff">DiffResult</A></CODE></FONT></TD> <TD><CODE><B>Liquibase.</B><B><A HREF="../../../liquibase/Liquibase.html#diff(liquibase.database.Database, liquibase.database.Database, liquibase.diff.compare.CompareControl)">diff</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;targetDatabase, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CatalogAndSchema.</B><B><A HREF="../../../liquibase/CatalogAndSchema.html#equals(liquibase.CatalogAndSchema, liquibase.database.Database)">equals</A></B>(<A HREF="../../../liquibase/CatalogAndSchema.html" title="class in liquibase">CatalogAndSchema</A>&nbsp;catalogAndSchema, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</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="../../../liquibase/CatalogAndSchema.html" title="class in liquibase">CatalogAndSchema</A></CODE></FONT></TD> <TD><CODE><B>CatalogAndSchema.</B><B><A HREF="../../../liquibase/CatalogAndSchema.html#standardize(liquibase.database.Database)">standardize</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This method returns a new CatalogAndSchema adjusted based on the configuration of the passed database.</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="../../../liquibase/package-summary.html">liquibase</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/Liquibase.html#Liquibase(liquibase.changelog.DatabaseChangeLog, liquibase.resource.ResourceAccessor, liquibase.database.Database)">Liquibase</A></B>(<A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/Liquibase.html#Liquibase(java.lang.String, liquibase.resource.ResourceAccessor, liquibase.database.Database)">Liquibase</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;changeLogFile, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a Liquibase instance.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/RuntimeEnvironment.html#RuntimeEnvironment(liquibase.database.Database, liquibase.Contexts)">RuntimeEnvironment</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;targetDatabase, <A HREF="../../../liquibase/Contexts.html" title="class in liquibase">Contexts</A>&nbsp;contexts)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>use version with LabelExpression</I></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/RuntimeEnvironment.html#RuntimeEnvironment(liquibase.database.Database, liquibase.Contexts, liquibase.LabelExpression)">RuntimeEnvironment</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;targetDatabase, <A HREF="../../../liquibase/Contexts.html" title="class in liquibase">Contexts</A>&nbsp;contexts, <A HREF="../../../liquibase/LabelExpression.html" title="class in liquibase">LabelExpression</A>&nbsp;labelExpression)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.change"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/change/package-summary.html">liquibase.change</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="../../../liquibase/change/package-summary.html">liquibase.change</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Validate that this change executed successfully against the given database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AbstractSQLChange.</B><B><A HREF="../../../liquibase/change/AbstractSQLChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#generateRollbackStatements(liquibase.database.Database)">generateRollbackStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects that would roll back the change.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#generateRollbackStatements(liquibase.database.Database)">generateRollbackStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation relies on value returned from <A HREF="../../../liquibase/change/AbstractChange.html#createInverses()"><CODE>AbstractChange.createInverses()</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#generateRollbackStatementsVolatile(liquibase.database.Database)">generateRollbackStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns true if this change reads data from the database or other sources that would change during the course of an update in the <A HREF="../../../liquibase/change/Change.html#generateRollbackStatements(liquibase.database.Database)"><CODE>Change.generateRollbackStatements(Database)</CODE></A> method.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractSQLChange.</B><B><A HREF="../../../liquibase/change/AbstractSQLChange.html#generateRollbackStatementsVolatile(liquibase.database.Database)">generateRollbackStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#generateRollbackStatementsVolatile(liquibase.database.Database)">generateRollbackStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation delegates logic to the <A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#generateRollbackStatementsIsVolatile(liquibase.database.Database)"><CODE>SqlGenerator.generateRollbackStatementsIsVolatile(Database)</CODE></A> method on the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects returned by <A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)"><CODE>Change.generateStatements(liquibase.database.Database)</CODE></A> If no or null SqlStatements are returned by generateRollbackStatements then this method returns false.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects required to run the change for the given database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AbstractSQLChange.</B><B><A HREF="../../../liquibase/change/AbstractSQLChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates one or more SqlStatements depending on how the SQL should be parsed.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns true if this change reads data from the database or other sources that would change during the course of an update in the <A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)"><CODE>Change.generateStatements(Database)</CODE></A> method.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractSQLChange.</B><B><A HREF="../../../liquibase/change/AbstractSQLChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation delegates logic to the <A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#generateStatementsIsVolatile(liquibase.database.Database)"><CODE>SqlGenerator.generateStatementsIsVolatile(Database)</CODE></A> method on the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects returned by <A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)"><CODE>Change.generateStatements(liquibase.database.Database)</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;</CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#getAffectedDatabaseObjects(liquibase.database.Database)">getAffectedDatabaseObjects</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns example <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure"><CODE>DatabaseObject</CODE></A> instances describing the objects affected by this change.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;</CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#getAffectedDatabaseObjects(liquibase.database.Database)">getAffectedDatabaseObjects</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation delegates logic to the <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#getAffectedDatabaseObjects(liquibase.statement.SqlStatement, liquibase.database.Database)"><CODE>SqlGeneratorFactory.getAffectedDatabaseObjects(liquibase.statement.SqlStatement, liquibase.database.Database)</CODE></A> method on the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects returned by <A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)"><CODE>Change.generateStatements(liquibase.database.Database)</CODE></A> Returns empty set if change is not supported for the passed database</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>ChangeParameterMetaData.</B><B><A HREF="../../../liquibase/change/ChangeParameterMetaData.html#getExampleValue(liquibase.database.Database)">getExampleValue</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="../../../liquibase/change/ChangeParameterMetaData.html" title="class in liquibase.change">ChangeParameterMetaData</A>&gt;</CODE></FONT></TD> <TD><CODE><B>ChangeMetaData.</B><B><A HREF="../../../liquibase/change/ChangeMetaData.html#getOptionalParameters(liquibase.database.Database)">getOptionalParameters</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the optional parameters for this change for the given database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="../../../liquibase/change/ChangeParameterMetaData.html" title="class in liquibase.change">ChangeParameterMetaData</A>&gt;</CODE></FONT></TD> <TD><CODE><B>ChangeMetaData.</B><B><A HREF="../../../liquibase/change/ChangeMetaData.html#getRequiredParameters(liquibase.database.Database)">getRequiredParameters</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the required parameters for this change for the given database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>ChangeParameterMetaData.</B><B><A HREF="../../../liquibase/change/ChangeParameterMetaData.html#isRequiredFor(liquibase.database.Database)">isRequiredFor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A convenience method for testing the value returned by <A HREF="../../../liquibase/change/ChangeParameterMetaData.html#getRequiredForDatabase()"><CODE>ChangeParameterMetaData.getRequiredForDatabase()</CODE></A> against a given database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return true if this Change object supports the passed database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractSQLChange.</B><B><A HREF="../../../liquibase/change/AbstractSQLChange.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation delegates logic to the <A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#supports(StatementType, liquibase.database.Database)"><CODE>SqlGenerator.supports(liquibase.statement.SqlStatement, liquibase.database.Database)</CODE></A> method on the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects returned by <A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)"><CODE>Change.generateStatements(liquibase.database.Database)</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation delegates logic to the <A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#supports(StatementType, liquibase.database.Database)"><CODE>SqlGenerator.supports(liquibase.statement.SqlStatement, liquibase.database.Database)</CODE></A> method on the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects returned by <A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)"><CODE>Change.generateStatements(liquibase.database.Database)</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>ChangeParameterMetaData.</B><B><A HREF="../../../liquibase/change/ChangeParameterMetaData.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#supportsRollback(liquibase.database.Database)">supportsRollback</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns true if this change be rolled back for the given database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#supportsRollback(liquibase.database.Database)">supportsRollback</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation returns true if <A HREF="../../../liquibase/change/AbstractChange.html#createInverses()"><CODE>AbstractChange.createInverses()</CODE></A> returns a non-null value.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generate errors based on the configured Change instance.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AbstractSQLChange.</B><B><A HREF="../../../liquibase/change/AbstractSQLChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation checks the ChangeParameterMetaData for declared required fields and also delegates logic to the <A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#validate(StatementType, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)"><CODE>SqlGenerator.validate(liquibase.statement.SqlStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)</CODE></A> method on the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects returned by <A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)"><CODE>Change.generateStatements(liquibase.database.Database)</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>Change.</B><B><A HREF="../../../liquibase/change/Change.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates warnings based on the configured Change instance.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>AbstractSQLChange.</B><B><A HREF="../../../liquibase/change/AbstractSQLChange.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>AbstractChange.</B><B><A HREF="../../../liquibase/change/AbstractChange.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implementation delegates logic to the <A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#warn(StatementType, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)"><CODE>SqlGenerator.warn(liquibase.statement.SqlStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)</CODE></A> method on the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects returned by <A HREF="../../../liquibase/change/Change.html#generateStatements(liquibase.database.Database)"><CODE>Change.generateStatements(liquibase.database.Database)</CODE></A>.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.change.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/change/core/package-summary.html">liquibase.change.core</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="../../../liquibase/change/core/package-summary.html">liquibase.change.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropNotNullConstraintChange.</B><B><A HREF="../../../liquibase/change/core/DropNotNullConstraintChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AlterSequenceChange.</B><B><A HREF="../../../liquibase/change/core/AlterSequenceChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>CreateIndexChange.</B><B><A HREF="../../../liquibase/change/core/CreateIndexChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropPrimaryKeyChange.</B><B><A HREF="../../../liquibase/change/core/DropPrimaryKeyChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>CreateSequenceChange.</B><B><A HREF="../../../liquibase/change/core/CreateSequenceChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>TagDatabaseChange.</B><B><A HREF="../../../liquibase/change/core/TagDatabaseChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AddPrimaryKeyChange.</B><B><A HREF="../../../liquibase/change/core/AddPrimaryKeyChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>CreateProcedureChange.</B><B><A HREF="../../../liquibase/change/core/CreateProcedureChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementChange.</B><B><A HREF="../../../liquibase/change/core/AddAutoIncrementChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AddLookupTableChange.</B><B><A HREF="../../../liquibase/change/core/AddLookupTableChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>RenameViewChange.</B><B><A HREF="../../../liquibase/change/core/RenameViewChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropSequenceChange.</B><B><A HREF="../../../liquibase/change/core/DropSequenceChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>RenameTableChange.</B><B><A HREF="../../../liquibase/change/core/RenameTableChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>InsertDataChange.</B><B><A HREF="../../../liquibase/change/core/InsertDataChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AddDefaultValueChange.</B><B><A HREF="../../../liquibase/change/core/AddDefaultValueChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropTableChange.</B><B><A HREF="../../../liquibase/change/core/DropTableChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintChange.</B><B><A HREF="../../../liquibase/change/core/AddUniqueConstraintChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropIndexChange.</B><B><A HREF="../../../liquibase/change/core/DropIndexChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>LoadUpdateDataChange.</B><B><A HREF="../../../liquibase/change/core/LoadUpdateDataChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>UpdateDataChange.</B><B><A HREF="../../../liquibase/change/core/UpdateDataChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropViewChange.</B><B><A HREF="../../../liquibase/change/core/DropViewChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropUniqueConstraintChange.</B><B><A HREF="../../../liquibase/change/core/DropUniqueConstraintChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AddColumnChange.</B><B><A HREF="../../../liquibase/change/core/AddColumnChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropColumnChange.</B><B><A HREF="../../../liquibase/change/core/DropColumnChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>CreateTableChange.</B><B><A HREF="../../../liquibase/change/core/CreateTableChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>RenameColumnChange.</B><B><A HREF="../../../liquibase/change/core/RenameColumnChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>LoadDataChange.</B><B><A HREF="../../../liquibase/change/core/LoadDataChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>AddForeignKeyConstraintChange.</B><B><A HREF="../../../liquibase/change/core/AddForeignKeyConstraintChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>CreateViewChange.</B><B><A HREF="../../../liquibase/change/core/CreateViewChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropForeignKeyConstraintChange.</B><B><A HREF="../../../liquibase/change/core/DropForeignKeyConstraintChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/change/ChangeStatus.html" title="class in liquibase.change">ChangeStatus</A></CODE></FONT></TD> <TD><CODE><B>DropDefaultValueChange.</B><B><A HREF="../../../liquibase/change/core/DropDefaultValueChange.html#checkStatus(liquibase.database.Database)">checkStatus</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;</CODE></FONT></TD> <TD><CODE><B>ExecuteShellCommandChange.</B><B><A HREF="../../../liquibase/change/core/ExecuteShellCommandChange.html#createFinalCommandArray(liquibase.database.Database)">createFinalCommandArray</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/ProcessBuilder.html?is-external=true" title="class or interface in java.lang">ProcessBuilder</A></CODE></FONT></TD> <TD><CODE><B>ExecuteShellCommandChange.</B><B><A HREF="../../../liquibase/change/core/ExecuteShellCommandChange.html#createProcessBuilder(liquibase.database.Database)">createProcessBuilder</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>ExecuteShellCommandChange.</B><B><A HREF="../../../liquibase/change/core/ExecuteShellCommandChange.html#executeCommand(liquibase.database.Database)">executeCommand</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>LoadUpdateDataChange.</B><B><A HREF="../../../liquibase/change/core/LoadUpdateDataChange.html#generateRollbackStatements(liquibase.database.Database)">generateRollbackStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SQLFileChange.</B><B><A HREF="../../../liquibase/change/core/SQLFileChange.html#generateRollbackStatementsVolatile(liquibase.database.Database)">generateRollbackStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CreateProcedureChange.</B><B><A HREF="../../../liquibase/change/core/CreateProcedureChange.html#generateRollbackStatementsVolatile(liquibase.database.Database)">generateRollbackStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ExecuteShellCommandChange.</B><B><A HREF="../../../liquibase/change/core/ExecuteShellCommandChange.html#generateRollbackStatementsVolatile(liquibase.database.Database)">generateRollbackStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>LoadDataChange.</B><B><A HREF="../../../liquibase/change/core/LoadDataChange.html#generateRollbackStatementsVolatile(liquibase.database.Database)">generateRollbackStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropNotNullConstraintChange.</B><B><A HREF="../../../liquibase/change/core/DropNotNullConstraintChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>SetColumnRemarksChange.</B><B><A HREF="../../../liquibase/change/core/SetColumnRemarksChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AlterSequenceChange.</B><B><A HREF="../../../liquibase/change/core/AlterSequenceChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateIndexChange.</B><B><A HREF="../../../liquibase/change/core/CreateIndexChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropPrimaryKeyChange.</B><B><A HREF="../../../liquibase/change/core/DropPrimaryKeyChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateSequenceChange.</B><B><A HREF="../../../liquibase/change/core/CreateSequenceChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>TagDatabaseChange.</B><B><A HREF="../../../liquibase/change/core/TagDatabaseChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates the <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement"><CODE>SqlStatement</CODE></A> objects required to run the change for the given database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AddPrimaryKeyChange.</B><B><A HREF="../../../liquibase/change/core/AddPrimaryKeyChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AddNotNullConstraintChange.</B><B><A HREF="../../../liquibase/change/core/AddNotNullConstraintChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateProcedureChange.</B><B><A HREF="../../../liquibase/change/core/CreateProcedureChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementChange.</B><B><A HREF="../../../liquibase/change/core/AddAutoIncrementChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AddLookupTableChange.</B><B><A HREF="../../../liquibase/change/core/AddLookupTableChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropProcedureChange.</B><B><A HREF="../../../liquibase/change/core/DropProcedureChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>SetTableRemarksChange.</B><B><A HREF="../../../liquibase/change/core/SetTableRemarksChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>RenameViewChange.</B><B><A HREF="../../../liquibase/change/core/RenameViewChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>ExecuteShellCommandChange.</B><B><A HREF="../../../liquibase/change/core/ExecuteShellCommandChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropSequenceChange.</B><B><A HREF="../../../liquibase/change/core/DropSequenceChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>RenameTableChange.</B><B><A HREF="../../../liquibase/change/core/RenameTableChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>InsertDataChange.</B><B><A HREF="../../../liquibase/change/core/InsertDataChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DeleteDataChange.</B><B><A HREF="../../../liquibase/change/core/DeleteDataChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueChange.</B><B><A HREF="../../../liquibase/change/core/AddDefaultValueChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropTableChange.</B><B><A HREF="../../../liquibase/change/core/DropTableChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>EmptyChange.</B><B><A HREF="../../../liquibase/change/core/EmptyChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintChange.</B><B><A HREF="../../../liquibase/change/core/AddUniqueConstraintChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropIndexChange.</B><B><A HREF="../../../liquibase/change/core/DropIndexChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>ModifyDataTypeChange.</B><B><A HREF="../../../liquibase/change/core/ModifyDataTypeChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>UpdateDataChange.</B><B><A HREF="../../../liquibase/change/core/UpdateDataChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropViewChange.</B><B><A HREF="../../../liquibase/change/core/DropViewChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropUniqueConstraintChange.</B><B><A HREF="../../../liquibase/change/core/DropUniqueConstraintChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AddColumnChange.</B><B><A HREF="../../../liquibase/change/core/AddColumnChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropColumnChange.</B><B><A HREF="../../../liquibase/change/core/DropColumnChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateTableChange.</B><B><A HREF="../../../liquibase/change/core/CreateTableChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>RenameColumnChange.</B><B><A HREF="../../../liquibase/change/core/RenameColumnChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>RenameSequenceChange.</B><B><A HREF="../../../liquibase/change/core/RenameSequenceChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>LoadDataChange.</B><B><A HREF="../../../liquibase/change/core/LoadDataChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>AddForeignKeyConstraintChange.</B><B><A HREF="../../../liquibase/change/core/AddForeignKeyConstraintChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>OutputChange.</B><B><A HREF="../../../liquibase/change/core/OutputChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropAllForeignKeyConstraintsChange.</B><B><A HREF="../../../liquibase/change/core/DropAllForeignKeyConstraintsChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateViewChange.</B><B><A HREF="../../../liquibase/change/core/CreateViewChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>MergeColumnChange.</B><B><A HREF="../../../liquibase/change/core/MergeColumnChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>StopChange.</B><B><A HREF="../../../liquibase/change/core/StopChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropForeignKeyConstraintChange.</B><B><A HREF="../../../liquibase/change/core/DropForeignKeyConstraintChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>DropDefaultValueChange.</B><B><A HREF="../../../liquibase/change/core/DropDefaultValueChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateProcedureChange.</B><B><A HREF="../../../liquibase/change/core/CreateProcedureChange.html#generateStatements(java.lang.String, java.lang.String, liquibase.database.Database)">generateStatements</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;logicText, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;endDelimiter, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropPrimaryKeyChange.</B><B><A HREF="../../../liquibase/change/core/DropPrimaryKeyChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SQLFileChange.</B><B><A HREF="../../../liquibase/change/core/SQLFileChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CreateProcedureChange.</B><B><A HREF="../../../liquibase/change/core/CreateProcedureChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ExecuteShellCommandChange.</B><B><A HREF="../../../liquibase/change/core/ExecuteShellCommandChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropColumnChange.</B><B><A HREF="../../../liquibase/change/core/DropColumnChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>LoadDataChange.</B><B><A HREF="../../../liquibase/change/core/LoadDataChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropAllForeignKeyConstraintsChange.</B><B><A HREF="../../../liquibase/change/core/DropAllForeignKeyConstraintsChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>MergeColumnChange.</B><B><A HREF="../../../liquibase/change/core/MergeColumnChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>StopChange.</B><B><A HREF="../../../liquibase/change/core/StopChange.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddLookupTableChange.</B><B><A HREF="../../../liquibase/change/core/AddLookupTableChange.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropColumnChange.</B><B><A HREF="../../../liquibase/change/core/DropColumnChange.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>LoadDataChange.</B><B><A HREF="../../../liquibase/change/core/LoadDataChange.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>MergeColumnChange.</B><B><A HREF="../../../liquibase/change/core/MergeColumnChange.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SetColumnRemarksChange.</B><B><A HREF="../../../liquibase/change/core/SetColumnRemarksChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SQLFileChange.</B><B><A HREF="../../../liquibase/change/core/SQLFileChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateProcedureChange.</B><B><A HREF="../../../liquibase/change/core/CreateProcedureChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SetTableRemarksChange.</B><B><A HREF="../../../liquibase/change/core/SetTableRemarksChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ExecuteShellCommandChange.</B><B><A HREF="../../../liquibase/change/core/ExecuteShellCommandChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>InsertDataChange.</B><B><A HREF="../../../liquibase/change/core/InsertDataChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddDefaultValueChange.</B><B><A HREF="../../../liquibase/change/core/AddDefaultValueChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>UpdateDataChange.</B><B><A HREF="../../../liquibase/change/core/UpdateDataChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropColumnChange.</B><B><A HREF="../../../liquibase/change/core/DropColumnChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateTableChange.</B><B><A HREF="../../../liquibase/change/core/CreateTableChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>OutputChange.</B><B><A HREF="../../../liquibase/change/core/OutputChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>ExecuteShellCommandChange.</B><B><A HREF="../../../liquibase/change/core/ExecuteShellCommandChange.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>LoadDataChange.</B><B><A HREF="../../../liquibase/change/core/LoadDataChange.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.change.custom"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/change/custom/package-summary.html">liquibase.change.custom</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="../../../liquibase/change/custom/package-summary.html">liquibase.change.custom</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CustomTaskChange.</B><B><A HREF="../../../liquibase/change/custom/CustomTaskChange.html#execute(liquibase.database.Database)">execute</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method called to run the change logic.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CustomSqlRollback.</B><B><A HREF="../../../liquibase/change/custom/CustomSqlRollback.html#generateRollbackStatements(liquibase.database.Database)">generateRollbackStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates the SQL statements required to roll back the change</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CustomChangeWrapper.</B><B><A HREF="../../../liquibase/change/custom/CustomChangeWrapper.html#generateRollbackStatements(liquibase.database.Database)">generateRollbackStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Finishes configuring the CustomChange based on the values passed to <A HREF="../../../liquibase/change/custom/CustomChangeWrapper.html#setParam(java.lang.String, java.lang.String)"><CODE>CustomChangeWrapper.setParam(String, String)</CODE></A> then calls <A HREF="../../../liquibase/change/custom/CustomSqlRollback.html#generateRollbackStatements(liquibase.database.Database)"><CODE>CustomSqlRollback.generateRollbackStatements(liquibase.database.Database)</CODE></A> or <A HREF="../../../liquibase/change/custom/CustomTaskRollback.html#rollback(liquibase.database.Database)"><CODE>CustomTaskRollback.rollback(liquibase.database.Database)</CODE></A> depending on the CustomChange implementation.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CustomChangeWrapper.</B><B><A HREF="../../../liquibase/change/custom/CustomChangeWrapper.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Finishes configuring the CustomChange based on the values passed to <A HREF="../../../liquibase/change/custom/CustomChangeWrapper.html#setParam(java.lang.String, java.lang.String)"><CODE>CustomChangeWrapper.setParam(String, String)</CODE></A> then calls <A HREF="../../../liquibase/change/custom/CustomSqlChange.html#generateStatements(liquibase.database.Database)"><CODE>CustomSqlChange.generateStatements(liquibase.database.Database)</CODE></A> or <A HREF="../../../liquibase/change/custom/CustomTaskChange.html#execute(liquibase.database.Database)"><CODE>CustomTaskChange.execute(liquibase.database.Database)</CODE></A> depending on the CustomChange implementation.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]</CODE></FONT></TD> <TD><CODE><B>CustomSqlChange.</B><B><A HREF="../../../liquibase/change/custom/CustomSqlChange.html#generateStatements(liquibase.database.Database)">generateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates the SQL statements required to run the change</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>CustomChangeWrapper.</B><B><A HREF="../../../liquibase/change/custom/CustomChangeWrapper.html#generateStatementsVolatile(liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CustomTaskRollback.</B><B><A HREF="../../../liquibase/change/custom/CustomTaskRollback.html#rollback(liquibase.database.Database)">rollback</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method called to rollback the change.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>CustomChangeWrapper.</B><B><A HREF="../../../liquibase/change/custom/CustomChangeWrapper.html#supportsRollback(liquibase.database.Database)">supportsRollback</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns true if the customChange supports rolling back.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CustomChangeWrapper.</B><B><A HREF="../../../liquibase/change/custom/CustomChangeWrapper.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Call the <A HREF="../../../liquibase/change/custom/CustomChange.html#validate(liquibase.database.Database)"><CODE>CustomChange.validate(liquibase.database.Database)</CODE></A> method and return the result.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CustomChange.</B><B><A HREF="../../../liquibase/change/custom/CustomChange.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Tests that the change is configured correctly before attempting to execute it.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>CustomChangeWrapper.</B><B><A HREF="../../../liquibase/change/custom/CustomChangeWrapper.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Required for the Change interface, but not supported by CustomChanges.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.changelog"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/changelog/package-summary.html">liquibase.changelog</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="../../../liquibase/changelog/package-summary.html">liquibase.changelog</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>AbstractChangeLogHistoryService.</B><B><A HREF="../../../liquibase/changelog/AbstractChangeLogHistoryService.html#getDatabase()">getDatabase</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="../../../liquibase/changelog/package-summary.html">liquibase.changelog</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/changelog/ChangeSet.ExecType.html" title="enum in liquibase.changelog">ChangeSet.ExecType</A></CODE></FONT></TD> <TD><CODE><B>ChangeSet.</B><B><A HREF="../../../liquibase/changelog/ChangeSet.html#execute(liquibase.changelog.DatabaseChangeLog, liquibase.changelog.visitor.ChangeExecListener, liquibase.database.Database)">execute</A></B>(<A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html" title="interface in liquibase.changelog.visitor">ChangeExecListener</A>&nbsp;listener, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This method will actually execute each of the changes in the list against the specified database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/changelog/ChangeSet.ExecType.html" title="enum in liquibase.changelog">ChangeSet.ExecType</A></CODE></FONT></TD> <TD><CODE><B>ChangeSet.</B><B><A HREF="../../../liquibase/changelog/ChangeSet.html#execute(liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">execute</A></B>(<A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/changelog/ChangeLogHistoryService.html" title="interface in liquibase.changelog">ChangeLogHistoryService</A></CODE></FONT></TD> <TD><CODE><B>ChangeLogHistoryServiceFactory.</B><B><A HREF="../../../liquibase/changelog/ChangeLogHistoryServiceFactory.html#getChangeLogService(liquibase.database.Database)">getChangeLogService</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,?&gt;&gt;</CODE></FONT></TD> <TD><CODE><B>StandardChangeLogHistoryService.</B><B><A HREF="../../../liquibase/changelog/StandardChangeLogHistoryService.html#queryDatabaseChangeLogTable(liquibase.database.Database)">queryDatabaseChangeLogTable</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeSet.</B><B><A HREF="../../../liquibase/changelog/ChangeSet.html#rollback(liquibase.database.Database)">rollback</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeLogHistoryService.</B><B><A HREF="../../../liquibase/changelog/ChangeLogHistoryService.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>AbstractChangeLogHistoryService.</B><B><A HREF="../../../liquibase/changelog/AbstractChangeLogHistoryService.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>OfflineChangeLogHistoryService.</B><B><A HREF="../../../liquibase/changelog/OfflineChangeLogHistoryService.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>StandardChangeLogHistoryService.</B><B><A HREF="../../../liquibase/changelog/StandardChangeLogHistoryService.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ChangeLogHistoryService.</B><B><A HREF="../../../liquibase/changelog/ChangeLogHistoryService.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ChangeSet.</B><B><A HREF="../../../liquibase/changelog/ChangeSet.html#supportsRollback(liquibase.database.Database)">supportsRollback</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>DatabaseChangeLog.</B><B><A HREF="../../../liquibase/changelog/DatabaseChangeLog.html#validate(liquibase.database.Database, liquibase.Contexts)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/Contexts.html" title="class in liquibase">Contexts</A>&nbsp;contexts)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>Use LabelExpression version</I></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>DatabaseChangeLog.</B><B><A HREF="../../../liquibase/changelog/DatabaseChangeLog.html#validate(liquibase.database.Database, liquibase.Contexts, liquibase.LabelExpression)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/Contexts.html" title="class in liquibase">Contexts</A>&nbsp;contexts, <A HREF="../../../liquibase/LabelExpression.html" title="class in liquibase">LabelExpression</A>&nbsp;labelExpression)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>DatabaseChangeLog.</B><B><A HREF="../../../liquibase/changelog/DatabaseChangeLog.html#validate(liquibase.database.Database, java.lang.String...)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>...&nbsp;contexts)</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">Constructors in <A HREF="../../../liquibase/changelog/package-summary.html">liquibase.changelog</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/ChangeLogParameters.html#ChangeLogParameters(liquibase.database.Database)">ChangeLogParameters</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/OfflineChangeLogHistoryService.html#OfflineChangeLogHistoryService(liquibase.database.Database, java.io.File, boolean, boolean)">OfflineChangeLogHistoryService</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</A>&nbsp;changeLogFile, boolean&nbsp;executeDmlAgainstDatabase, boolean&nbsp;executeDdlAgainstDatabase)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.changelog.filter"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/changelog/filter/package-summary.html">liquibase.changelog.filter</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="../../../liquibase/changelog/filter/package-summary.html">liquibase.changelog.filter</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/filter/DbmsChangeSetFilter.html#DbmsChangeSetFilter(liquibase.database.Database)">DbmsChangeSetFilter</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/filter/ShouldRunChangeSetFilter.html#ShouldRunChangeSetFilter(liquibase.database.Database)">ShouldRunChangeSetFilter</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/filter/ShouldRunChangeSetFilter.html#ShouldRunChangeSetFilter(liquibase.database.Database, boolean)">ShouldRunChangeSetFilter</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, boolean&nbsp;ignoreClasspathPrefix)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.changelog.visitor"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/changelog/visitor/package-summary.html">liquibase.changelog.visitor</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="../../../liquibase/changelog/visitor/package-summary.html">liquibase.changelog.visitor</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>ValidatingVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/ValidatingVisitor.html#getDatabase()">getDatabase</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="../../../liquibase/changelog/visitor/package-summary.html">liquibase.changelog.visitor</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/changelog/ChangeSetStatus.html" title="class in liquibase.changelog">ChangeSetStatus</A></CODE></FONT></TD> <TD><CODE><B>StatusVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/StatusVisitor.html#addStatus(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">addStatus</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>UpdateVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/UpdateVisitor.html#fireRan(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, liquibase.changelog.ChangeSet.ExecType)">fireRan</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database2, <A HREF="../../../liquibase/changelog/ChangeSet.ExecType.html" title="enum in liquibase.changelog">ChangeSet.ExecType</A>&nbsp;execType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>UpdateVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/UpdateVisitor.html#fireRunFailed(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, liquibase.exception.MigrationFailedException)">fireRunFailed</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/exception/MigrationFailedException.html" title="class in liquibase.exception">MigrationFailedException</A>&nbsp;e)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>UpdateVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/UpdateVisitor.html#fireWillRun(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, liquibase.changelog.ChangeSet.RunStatus)">fireWillRun</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database2, <A HREF="../../../liquibase/changelog/ChangeSet.RunStatus.html" title="enum in liquibase.changelog">ChangeSet.RunStatus</A>&nbsp;runStatus)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeLogSyncListener.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeLogSyncListener.html#markedRan(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">markedRan</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html#ran(liquibase.change.Change, liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">ran</A></B>(<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&nbsp;change, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>AbstractChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/AbstractChangeExecListener.html#ran(liquibase.change.Change, liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">ran</A></B>(<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&nbsp;change, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html#ran(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, liquibase.changelog.ChangeSet.ExecType)">ran</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/ChangeSet.ExecType.html" title="enum in liquibase.changelog">ChangeSet.ExecType</A>&nbsp;execType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called after the given changeset is run.</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>AbstractChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/AbstractChangeExecListener.html#ran(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, liquibase.changelog.ChangeSet.ExecType)">ran</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/ChangeSet.ExecType.html" title="enum in liquibase.changelog">ChangeSet.ExecType</A>&nbsp;execType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html#rolledBack(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">rolledBack</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called after a change is rolled back.</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>AbstractChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/AbstractChangeExecListener.html#rolledBack(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">rolledBack</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html#runFailed(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.lang.Exception)">runFailed</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A>&nbsp;exception)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>AbstractChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/AbstractChangeExecListener.html#runFailed(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.lang.Exception)">runFailed</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A>&nbsp;exception)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SkippedChangeSetVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/SkippedChangeSetVisitor.html#skipped(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">skipped</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>StatusVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/StatusVisitor.html#skipped(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">skipped</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ValidatingVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/ValidatingVisitor.html#validate(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeSetVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeSetVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>StatusVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/StatusVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ValidatingVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/ValidatingVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>UpdateVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/UpdateVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>DBDocVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/DBDocVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeLogSyncVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeLogSyncVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>RollbackVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/RollbackVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ExpectedChangesVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/ExpectedChangesVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ListVisitor.</B><B><A HREF="../../../liquibase/changelog/visitor/ListVisitor.html#visit(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, java.util.Set)">visit</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/changelog/filter/ChangeSetFilterResult.html" title="class in liquibase.changelog.filter">ChangeSetFilterResult</A>&gt;&nbsp;filterResults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html#willRun(liquibase.change.Change, liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">willRun</A></B>(<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&nbsp;change, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>AbstractChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/AbstractChangeExecListener.html#willRun(liquibase.change.Change, liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database)">willRun</A></B>(<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&nbsp;change, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html#willRun(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, liquibase.changelog.ChangeSet.RunStatus)">willRun</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/ChangeSet.RunStatus.html" title="enum in liquibase.changelog">ChangeSet.RunStatus</A>&nbsp;runStatus)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called just before a given changeset is run.</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>AbstractChangeExecListener.</B><B><A HREF="../../../liquibase/changelog/visitor/AbstractChangeExecListener.html#willRun(liquibase.changelog.ChangeSet, liquibase.changelog.DatabaseChangeLog, liquibase.database.Database, liquibase.changelog.ChangeSet.RunStatus)">willRun</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/ChangeSet.RunStatus.html" title="enum in liquibase.changelog">ChangeSet.RunStatus</A>&nbsp;runStatus)</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">Constructors in <A HREF="../../../liquibase/changelog/visitor/package-summary.html">liquibase.changelog.visitor</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/visitor/ChangeLogSyncVisitor.html#ChangeLogSyncVisitor(liquibase.database.Database)">ChangeLogSyncVisitor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/visitor/ChangeLogSyncVisitor.html#ChangeLogSyncVisitor(liquibase.database.Database, liquibase.changelog.visitor.ChangeLogSyncListener)">ChangeLogSyncVisitor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/visitor/ChangeLogSyncListener.html" title="interface in liquibase.changelog.visitor">ChangeLogSyncListener</A>&nbsp;listener)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/visitor/DBDocVisitor.html#DBDocVisitor(liquibase.database.Database)">DBDocVisitor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/visitor/RollbackVisitor.html#RollbackVisitor(liquibase.database.Database)">RollbackVisitor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>- please use the constructor with ChangeExecListener, which can be null.</I></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/visitor/RollbackVisitor.html#RollbackVisitor(liquibase.database.Database, liquibase.changelog.visitor.ChangeExecListener)">RollbackVisitor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html" title="interface in liquibase.changelog.visitor">ChangeExecListener</A>&nbsp;listener)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/visitor/StatusVisitor.html#StatusVisitor(liquibase.database.Database)">StatusVisitor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/visitor/UpdateVisitor.html#UpdateVisitor(liquibase.database.Database)">UpdateVisitor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>- please use the constructor with ChangeExecListener, which can be null.</I></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/changelog/visitor/UpdateVisitor.html#UpdateVisitor(liquibase.database.Database, liquibase.changelog.visitor.ChangeExecListener)">UpdateVisitor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html" title="interface in liquibase.changelog.visitor">ChangeExecListener</A>&nbsp;execListener)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.command"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/command/package-summary.html">liquibase.command</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="../../../liquibase/command/package-summary.html">liquibase.command</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>ExecuteSqlCommand.</B><B><A HREF="../../../liquibase/command/ExecuteSqlCommand.html#getDatabase()">getDatabase</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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>SnapshotCommand.</B><B><A HREF="../../../liquibase/command/SnapshotCommand.html#getDatabase()">getDatabase</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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DiffCommand.</B><B><A HREF="../../../liquibase/command/DiffCommand.html#getReferenceDatabase()">getReferenceDatabase</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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DiffCommand.</B><B><A HREF="../../../liquibase/command/DiffCommand.html#getTargetDatabase()">getTargetDatabase</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="../../../liquibase/command/package-summary.html">liquibase.command</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ExecuteSqlCommand.</B><B><A HREF="../../../liquibase/command/ExecuteSqlCommand.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SnapshotCommand.</B><B><A HREF="../../../liquibase/command/SnapshotCommand.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/command/DiffCommand.html" title="class in liquibase.command">DiffCommand</A></CODE></FONT></TD> <TD><CODE><B>DiffCommand.</B><B><A HREF="../../../liquibase/command/DiffCommand.html#setReferenceDatabase(liquibase.database.Database)">setReferenceDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase)</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="../../../liquibase/command/DiffCommand.html" title="class in liquibase.command">DiffCommand</A></CODE></FONT></TD> <TD><CODE><B>DiffCommand.</B><B><A HREF="../../../liquibase/command/DiffCommand.html#setTargetDatabase(liquibase.database.Database)">setTargetDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;targetDatabase)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.common.datatype"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/common/datatype/package-summary.html">liquibase.common.datatype</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="../../../liquibase/common/datatype/package-summary.html">liquibase.common.datatype</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</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>DataTypeWrapper.</B><B><A HREF="../../../liquibase/common/datatype/DataTypeWrapper.html#getMaxParameters(liquibase.database.Database)">getMaxParameters</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>DataTypeWrapper.</B><B><A HREF="../../../liquibase/common/datatype/DataTypeWrapper.html#getMinParameters(liquibase.database.Database)">getMinParameters</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>DataTypeWrapper.</B><B><A HREF="../../../liquibase/common/datatype/DataTypeWrapper.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>DataTypeWrapper.</B><B><A HREF="../../../liquibase/common/datatype/DataTypeWrapper.html#stringToObject(java.lang.String, liquibase.database.Database)">stringToObject</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DataTypeWrapper.</B><B><A HREF="../../../liquibase/common/datatype/DataTypeWrapper.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DataTypeWrapper.</B><B><A HREF="../../../liquibase/common/datatype/DataTypeWrapper.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DataTypeWrapper.</B><B><A HREF="../../../liquibase/common/datatype/DataTypeWrapper.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.database"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/database/package-summary.html">liquibase.database</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">Classes in <A HREF="../../../liquibase/database/package-summary.html">liquibase.database</A> that implement <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</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="../../../liquibase/database/AbstractJdbcDatabase.html" title="class in liquibase.database">AbstractJdbcDatabase</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AbstractJdbcDatabase is extended by all supported databases as a facade to the underlying database.</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="../../../liquibase/database/package-summary.html">liquibase.database</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DatabaseFactory.</B><B><A HREF="../../../liquibase/database/DatabaseFactory.html#findCorrectDatabaseImplementation(liquibase.database.DatabaseConnection)">findCorrectDatabaseImplementation</A></B>(<A HREF="../../../liquibase/database/DatabaseConnection.html" title="interface in liquibase.database">DatabaseConnection</A>&nbsp;connection)</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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DatabaseFactory.</B><B><A HREF="../../../liquibase/database/DatabaseFactory.html#getDatabase(java.lang.String)">getDatabase</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;shortName)</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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DatabaseFactory.</B><B><A HREF="../../../liquibase/database/DatabaseFactory.html#openDatabase(java.lang.String, java.lang.String, java.lang.String, java.lang.String, liquibase.resource.ResourceAccessor)">openDatabase</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;url, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;username, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;password, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;propertyProviderClass, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor)</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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DatabaseFactory.</B><B><A HREF="../../../liquibase/database/DatabaseFactory.html#openDatabase(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, liquibase.resource.ResourceAccessor)">openDatabase</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;url, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;username, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;password, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;driver, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseClass, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;driverPropertiesFile, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;propertyProviderClass, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor)</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="../../../liquibase/database/package-summary.html">liquibase.database</A> that return types with arguments of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&gt;</CODE></FONT></TD> <TD><CODE><B>DatabaseFactory.</B><B><A HREF="../../../liquibase/database/DatabaseFactory.html#getImplementedDatabases()">getImplementedDatabases</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns instances of all implemented database types.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&gt;</CODE></FONT></TD> <TD><CODE><B>DatabaseFactory.</B><B><A HREF="../../../liquibase/database/DatabaseFactory.html#getInternalDatabases()">getInternalDatabases</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns instances of all "internal" database types.</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="../../../liquibase/database/package-summary.html">liquibase.database</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>OfflineConnection.</B><B><A HREF="../../../liquibase/database/OfflineConnection.html#attached(liquibase.database.Database)">attached</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>DatabaseConnection.</B><B><A HREF="../../../liquibase/database/DatabaseConnection.html#attached(liquibase.database.Database)">attached</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/changelog/ChangeLogHistoryService.html" title="interface in liquibase.changelog">ChangeLogHistoryService</A></CODE></FONT></TD> <TD><CODE><B>OfflineConnection.</B><B><A HREF="../../../liquibase/database/OfflineConnection.html#createChangeLogHistoryService(liquibase.database.Database)">createChangeLogHistoryService</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>DatabaseList.</B><B><A HREF="../../../liquibase/database/DatabaseList.html#definitionMatches(java.util.Collection, liquibase.database.Database, boolean)">definitionMatches</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;definition, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, boolean&nbsp;returnValueIfEmptyList)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>DatabaseList.</B><B><A HREF="../../../liquibase/database/DatabaseList.html#definitionMatches(java.lang.String, liquibase.database.Database, boolean)">definitionMatches</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;definition, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, boolean&nbsp;returnValueIfEmpty)</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;boolean</CODE></FONT></TD> <TD><CODE><B>OfflineConnection.</B><B><A HREF="../../../liquibase/database/OfflineConnection.html#isCorrectDatabaseImplementation(liquibase.database.Database)">isCorrectDatabaseImplementation</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>DatabaseFactory.</B><B><A HREF="../../../liquibase/database/DatabaseFactory.html#register(liquibase.database.Database)">register</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.database.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/database/core/package-summary.html">liquibase.database.core</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">Classes in <A HREF="../../../liquibase/database/core/package-summary.html">liquibase.database.core</A> that implement <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</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="../../../liquibase/database/core/DB2Database.html" title="class in liquibase.database.core">DB2Database</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;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../liquibase/database/core/DerbyDatabase.html" title="class in liquibase.database.core">DerbyDatabase</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;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../liquibase/database/core/FirebirdDatabase.html" title="class in liquibase.database.core">FirebirdDatabase</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Firebird database implementation.</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="../../../liquibase/database/core/H2Database.html" title="class in liquibase.database.core">H2Database</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;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../liquibase/database/core/HsqlDatabase.html" title="class in liquibase.database.core">HsqlDatabase</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;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../liquibase/database/core/InformixDatabase.html" title="class in liquibase.database.core">InformixDatabase</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;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../liquibase/database/core/MariaDBDatabase.html" title="class in liquibase.database.core">MariaDBDatabase</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Encapsulates MySQL database support.</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="../../../liquibase/database/core/MSSQLDatabase.html" title="class in liquibase.database.core">MSSQLDatabase</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Encapsulates MS-SQL database support.</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="../../../liquibase/database/core/MySQLDatabase.html" title="class in liquibase.database.core">MySQLDatabase</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Encapsulates MySQL database support.</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="../../../liquibase/database/core/OracleDatabase.html" title="class in liquibase.database.core">OracleDatabase</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Encapsulates Oracle database support.</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="../../../liquibase/database/core/PostgresDatabase.html" title="class in liquibase.database.core">PostgresDatabase</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Encapsulates PostgreSQL database support.</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="../../../liquibase/database/core/SQLiteDatabase.html" title="class in liquibase.database.core">SQLiteDatabase</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;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../liquibase/database/core/SybaseASADatabase.html" title="class in liquibase.database.core">SybaseASADatabase</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;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../liquibase/database/core/SybaseDatabase.html" title="class in liquibase.database.core">SybaseDatabase</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Encapsulates Sybase ASE database support.</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="../../../liquibase/database/core/UnsupportedDatabase.html" title="class in liquibase.database.core">UnsupportedDatabase</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="../../../liquibase/database/core/package-summary.html">liquibase.database.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&gt;</CODE></FONT></TD> <TD><CODE><B>SQLiteDatabase.</B><B><A HREF="../../../liquibase/database/core/SQLiteDatabase.html#getAlterTableStatements(liquibase.database.core.SQLiteDatabase.AlterTableVisitor, liquibase.database.Database, java.lang.String, java.lang.String, java.lang.String)">getAlterTableStatements</A></B>(<A HREF="../../../liquibase/database/core/SQLiteDatabase.AlterTableVisitor.html" title="interface in liquibase.database.core">SQLiteDatabase.AlterTableVisitor</A>&nbsp;alterTableVisitor, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;catalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;tableName)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.database.jvm"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/database/jvm/package-summary.html">liquibase.database.jvm</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="../../../liquibase/database/jvm/package-summary.html">liquibase.database.jvm</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JdbcConnection.</B><B><A HREF="../../../liquibase/database/jvm/JdbcConnection.html#attached(liquibase.database.Database)">attached</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.datatype"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/datatype/package-summary.html">liquibase.datatype</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="../../../liquibase/datatype/package-summary.html">liquibase.datatype</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/datatype/LiquibaseDataType.html" title="class in liquibase.datatype">LiquibaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DataTypeFactory.</B><B><A HREF="../../../liquibase/datatype/DataTypeFactory.html#from(liquibase.datatype.DatabaseDataType, liquibase.database.Database)">from</A></B>(<A HREF="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A>&nbsp;type, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/LiquibaseDataType.html" title="class in liquibase.datatype">LiquibaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DataTypeFactory.</B><B><A HREF="../../../liquibase/datatype/DataTypeFactory.html#from(liquibase.structure.core.DataType, liquibase.database.Database)">from</A></B>(<A HREF="../../../liquibase/structure/core/DataType.html" title="class in liquibase.structure.core">DataType</A>&nbsp;type, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/LiquibaseDataType.html" title="class in liquibase.datatype">LiquibaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DataTypeFactory.</B><B><A HREF="../../../liquibase/datatype/DataTypeFactory.html#fromDescription(java.lang.String, liquibase.database.Database)">fromDescription</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;dataTypeDefinition, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/LiquibaseDataType.html" title="class in liquibase.datatype">LiquibaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DataTypeFactory.</B><B><A HREF="../../../liquibase/datatype/DataTypeFactory.html#fromObject(java.lang.Object, liquibase.database.Database)">fromObject</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;object, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#functionToSql(liquibase.statement.DatabaseFunction, liquibase.database.Database)">functionToSql</A></B>(<A HREF="../../../liquibase/statement/DatabaseFunction.html" title="class in liquibase.statement">DatabaseFunction</A>&nbsp;function, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>DataTypeFactory.</B><B><A HREF="../../../liquibase/datatype/DataTypeFactory.html#getFalseBooleanValue(liquibase.database.Database)">getFalseBooleanValue</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#getMaxParameters(liquibase.database.Database)">getMaxParameters</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#getMinParameters(liquibase.database.Database)">getMinParameters</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>DataTypeFactory.</B><B><A HREF="../../../liquibase/datatype/DataTypeFactory.html#getTrueBooleanValue(liquibase.database.Database)">getTrueBooleanValue</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#isCurrentDateTimeFunction(java.lang.String, liquibase.database.Database)">isCurrentDateTimeFunction</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;string, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#numberToSql(java.lang.Number, liquibase.database.Database)">numberToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</A>&nbsp;number, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the value object in a format to include in SQL.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#otherToSql(java.lang.Object, liquibase.database.Database)">otherToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#sqlToObject(java.lang.String, liquibase.database.Database)">sqlToObject</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>LiquibaseDataType.</B><B><A HREF="../../../liquibase/datatype/LiquibaseDataType.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.datatype.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/datatype/core/package-summary.html">liquibase.datatype.core</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="../../../liquibase/datatype/core/package-summary.html">liquibase.datatype.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/text/DateFormat.html?is-external=true" title="class or interface in java.text">DateFormat</A></CODE></FONT></TD> <TD><CODE><B>DateType.</B><B><A HREF="../../../liquibase/datatype/core/DateType.html#getDateFormat(liquibase.database.Database)">getDateFormat</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/text/DateFormat.html?is-external=true" title="class or interface in java.text">DateFormat</A></CODE></FONT></TD> <TD><CODE><B>DateTimeType.</B><B><A HREF="../../../liquibase/datatype/core/DateTimeType.html#getDateTimeFormat(liquibase.database.Database)">getDateTimeFormat</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>BooleanType.</B><B><A HREF="../../../liquibase/datatype/core/BooleanType.html#getFalseBooleanValue(liquibase.database.Database)">getFalseBooleanValue</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The database-specific value to use for "false" "boolean" columns.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/text/DateFormat.html?is-external=true" title="class or interface in java.text">DateFormat</A></CODE></FONT></TD> <TD><CODE><B>TimeType.</B><B><A HREF="../../../liquibase/datatype/core/TimeType.html#getTimeFormat(liquibase.database.Database)">getTimeFormat</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>BooleanType.</B><B><A HREF="../../../liquibase/datatype/core/BooleanType.html#getTrueBooleanValue(liquibase.database.Database)">getTrueBooleanValue</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The database-specific value to use for "true" "boolean" columns.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>BooleanType.</B><B><A HREF="../../../liquibase/datatype/core/BooleanType.html#isNumericBoolean(liquibase.database.Database)">isNumericBoolean</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>CharType.</B><B><A HREF="../../../liquibase/datatype/core/CharType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>ClobType.</B><B><A HREF="../../../liquibase/datatype/core/ClobType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>MediumIntType.</B><B><A HREF="../../../liquibase/datatype/core/MediumIntType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>IntType.</B><B><A HREF="../../../liquibase/datatype/core/IntType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>UnknownType.</B><B><A HREF="../../../liquibase/datatype/core/UnknownType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>BooleanType.</B><B><A HREF="../../../liquibase/datatype/core/BooleanType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>DatabaseFunctionType.</B><B><A HREF="../../../liquibase/datatype/core/DatabaseFunctionType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>SmallIntType.</B><B><A HREF="../../../liquibase/datatype/core/SmallIntType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>BigIntType.</B><B><A HREF="../../../liquibase/datatype/core/BigIntType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>TinyIntType.</B><B><A HREF="../../../liquibase/datatype/core/TinyIntType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>BlobType.</B><B><A HREF="../../../liquibase/datatype/core/BlobType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>TimeType.</B><B><A HREF="../../../liquibase/datatype/core/TimeType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>DateTimeType.</B><B><A HREF="../../../liquibase/datatype/core/DateTimeType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>DateType.</B><B><A HREF="../../../liquibase/datatype/core/DateType.html#objectToSql(java.lang.Object, liquibase.database.Database)">objectToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>XMLType.</B><B><A HREF="../../../liquibase/datatype/core/XMLType.html#otherToSql(java.lang.Object, liquibase.database.Database)">otherToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>UUIDType.</B><B><A HREF="../../../liquibase/datatype/core/UUIDType.html#otherToSql(java.lang.Object, liquibase.database.Database)">otherToSql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>TimeType.</B><B><A HREF="../../../liquibase/datatype/core/TimeType.html#sqlToObject(java.lang.String, liquibase.database.Database)">sqlToObject</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>DateTimeType.</B><B><A HREF="../../../liquibase/datatype/core/DateTimeType.html#sqlToObject(java.lang.String, liquibase.database.Database)">sqlToObject</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>DateType.</B><B><A HREF="../../../liquibase/datatype/core/DateType.html#sqlToObject(java.lang.String, liquibase.database.Database)">sqlToObject</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>DateTimeType.</B><B><A HREF="../../../liquibase/datatype/core/DateTimeType.html#supportsFractionalDigits(liquibase.database.Database)">supportsFractionalDigits</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>CharType.</B><B><A HREF="../../../liquibase/datatype/core/CharType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>ClobType.</B><B><A HREF="../../../liquibase/datatype/core/ClobType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DecimalType.</B><B><A HREF="../../../liquibase/datatype/core/DecimalType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>MediumIntType.</B><B><A HREF="../../../liquibase/datatype/core/MediumIntType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>IntType.</B><B><A HREF="../../../liquibase/datatype/core/IntType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>UnknownType.</B><B><A HREF="../../../liquibase/datatype/core/UnknownType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>BooleanType.</B><B><A HREF="../../../liquibase/datatype/core/BooleanType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>TimestampType.</B><B><A HREF="../../../liquibase/datatype/core/TimestampType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>CurrencyType.</B><B><A HREF="../../../liquibase/datatype/core/CurrencyType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DoubleType.</B><B><A HREF="../../../liquibase/datatype/core/DoubleType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>FloatType.</B><B><A HREF="../../../liquibase/datatype/core/FloatType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>SmallIntType.</B><B><A HREF="../../../liquibase/datatype/core/SmallIntType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>NVarcharType.</B><B><A HREF="../../../liquibase/datatype/core/NVarcharType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>BigIntType.</B><B><A HREF="../../../liquibase/datatype/core/BigIntType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>TinyIntType.</B><B><A HREF="../../../liquibase/datatype/core/TinyIntType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>NCharType.</B><B><A HREF="../../../liquibase/datatype/core/NCharType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>VarcharType.</B><B><A HREF="../../../liquibase/datatype/core/VarcharType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>BlobType.</B><B><A HREF="../../../liquibase/datatype/core/BlobType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>XMLType.</B><B><A HREF="../../../liquibase/datatype/core/XMLType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>TimeType.</B><B><A HREF="../../../liquibase/datatype/core/TimeType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>NumberType.</B><B><A HREF="../../../liquibase/datatype/core/NumberType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DateTimeType.</B><B><A HREF="../../../liquibase/datatype/core/DateTimeType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>UUIDType.</B><B><A HREF="../../../liquibase/datatype/core/UUIDType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/datatype/DatabaseDataType.html" title="class in liquibase.datatype">DatabaseDataType</A></CODE></FONT></TD> <TD><CODE><B>DateType.</B><B><A HREF="../../../liquibase/datatype/core/DateType.html#toDatabaseDataType(liquibase.database.Database)">toDatabaseDataType</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.dbdoc"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/dbdoc/package-summary.html">liquibase.dbdoc</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">Fields in <A HREF="../../../liquibase/dbdoc/package-summary.html">liquibase.dbdoc</A> declared as <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>HTMLWriter.</B><B><A HREF="../../../liquibase/dbdoc/HTMLWriter.html#database">database</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="../../../liquibase/dbdoc/package-summary.html">liquibase.dbdoc</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected abstract &nbsp;void</CODE></FONT></TD> <TD><CODE><B>HTMLWriter.</B><B><A HREF="../../../liquibase/dbdoc/HTMLWriter.html#writeCustomHTML(java.io.Writer, java.lang.Object, java.util.List, liquibase.database.Database)">writeCustomHTML</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</A>&nbsp;fileWriter, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;object, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>PendingChangesWriter.</B><B><A HREF="../../../liquibase/dbdoc/PendingChangesWriter.html#writeCustomHTML(java.io.Writer, java.lang.Object, java.util.List, liquibase.database.Database)">writeCustomHTML</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</A>&nbsp;fileWriter, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;object, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>RecentChangesWriter.</B><B><A HREF="../../../liquibase/dbdoc/RecentChangesWriter.html#writeCustomHTML(java.io.Writer, java.lang.Object, java.util.List, liquibase.database.Database)">writeCustomHTML</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</A>&nbsp;fileWriter, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;object, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>AuthorWriter.</B><B><A HREF="../../../liquibase/dbdoc/AuthorWriter.html#writeCustomHTML(java.io.Writer, java.lang.Object, java.util.List, liquibase.database.Database)">writeCustomHTML</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</A>&nbsp;fileWriter, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;object, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>TableWriter.</B><B><A HREF="../../../liquibase/dbdoc/TableWriter.html#writeCustomHTML(java.io.Writer, java.lang.Object, java.util.List, liquibase.database.Database)">writeCustomHTML</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</A>&nbsp;fileWriter, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;object, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>ColumnWriter.</B><B><A HREF="../../../liquibase/dbdoc/ColumnWriter.html#writeCustomHTML(java.io.Writer, java.lang.Object, java.util.List, liquibase.database.Database)">writeCustomHTML</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</A>&nbsp;fileWriter, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;object, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>PendingSQLWriter.</B><B><A HREF="../../../liquibase/dbdoc/PendingSQLWriter.html#writeCustomHTML(java.io.Writer, java.lang.Object, java.util.List, liquibase.database.Database)">writeCustomHTML</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</A>&nbsp;fileWriter, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;object, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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">Constructors in <A HREF="../../../liquibase/dbdoc/package-summary.html">liquibase.dbdoc</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/dbdoc/AuthorWriter.html#AuthorWriter(java.io.File, liquibase.database.Database)">AuthorWriter</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</A>&nbsp;rootOutputDir, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/dbdoc/ColumnWriter.html#ColumnWriter(java.io.File, liquibase.database.Database)">ColumnWriter</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</A>&nbsp;rootOutputDir, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/dbdoc/HTMLWriter.html#HTMLWriter(java.io.File, liquibase.database.Database)">HTMLWriter</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</A>&nbsp;outputDir, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/dbdoc/PendingChangesWriter.html#PendingChangesWriter(java.io.File, liquibase.database.Database)">PendingChangesWriter</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</A>&nbsp;rootOutputDir, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/dbdoc/PendingSQLWriter.html#PendingSQLWriter(java.io.File, liquibase.database.Database, liquibase.changelog.DatabaseChangeLog)">PendingSQLWriter</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</A>&nbsp;rootOutputDir, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;databaseChangeLog)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/dbdoc/RecentChangesWriter.html#RecentChangesWriter(java.io.File, liquibase.database.Database)">RecentChangesWriter</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</A>&nbsp;rootOutputDir, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/dbdoc/TableWriter.html#TableWriter(java.io.File, liquibase.database.Database)">TableWriter</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</A>&nbsp;rootOutputDir, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.diff"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/diff/package-summary.html">liquibase.diff</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="../../../liquibase/diff/package-summary.html">liquibase.diff</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/diff/DiffResult.html" title="class in liquibase.diff">DiffResult</A></CODE></FONT></TD> <TD><CODE><B>DiffGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/DiffGeneratorFactory.html#compare(liquibase.database.Database, liquibase.database.Database, liquibase.diff.compare.CompareControl)">compare</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl)</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="../../../liquibase/diff/DiffResult.html" title="class in liquibase.diff">DiffResult</A></CODE></FONT></TD> <TD><CODE><B>DiffGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/DiffGeneratorFactory.html#compare(liquibase.database.Database, liquibase.database.Database, liquibase.snapshot.SnapshotControl, liquibase.snapshot.SnapshotControl, liquibase.diff.compare.CompareControl)">compare</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;referenceSnapshotControl, <A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;comparisonSnapshotControl, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl)</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="../../../liquibase/diff/DiffGenerator.html" title="interface in liquibase.diff">DiffGenerator</A></CODE></FONT></TD> <TD><CODE><B>DiffGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/DiffGeneratorFactory.html#getGenerator(liquibase.database.Database, liquibase.database.Database)">getGenerator</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DiffGenerator.</B><B><A HREF="../../../liquibase/diff/DiffGenerator.html#supports(liquibase.database.Database, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase)</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">Constructors in <A HREF="../../../liquibase/diff/package-summary.html">liquibase.diff</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/diff/ObjectDifferences.DatabaseObjectNameCompareFunction.html#ObjectDifferences.DatabaseObjectNameCompareFunction(java.lang.Class, liquibase.database.Database)">ObjectDifferences.DatabaseObjectNameCompareFunction</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;type, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/diff/ObjectDifferences.DataTypeCompareFunction.html#ObjectDifferences.DataTypeCompareFunction(liquibase.database.Database)">ObjectDifferences.DataTypeCompareFunction</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/diff/ObjectDifferences.StandardCompareFunction.html#ObjectDifferences.StandardCompareFunction(liquibase.diff.compare.CompareControl.SchemaComparison[], liquibase.database.Database)">ObjectDifferences.StandardCompareFunction</A></B>(<A HREF="../../../liquibase/diff/compare/CompareControl.SchemaComparison.html" title="class in liquibase.diff.compare">CompareControl.SchemaComparison</A>[]&nbsp;schemaComparisons, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.diff.compare"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/diff/compare/package-summary.html">liquibase.diff.compare</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="../../../liquibase/diff/compare/package-summary.html">liquibase.diff.compare</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../liquibase/diff/compare/CompareControl.ComputedSchemas.html" title="class in liquibase.diff.compare">CompareControl.ComputedSchemas</A></CODE></FONT></TD> <TD><CODE><B>CompareControl.</B><B><A HREF="../../../liquibase/diff/compare/CompareControl.html#computeSchemas(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, liquibase.database.Database)">computeSchemas</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaNames, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;referenceSchemaNames, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;outputSchemaNames, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultCatalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultSchemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;referenceDefaultCatalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;referenceDefaultSchemaName, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparatorFactory.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorFactory.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparatorChain.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/diff/compare/DatabaseObjectComparator.html" title="interface in liquibase.diff.compare">DatabaseObjectComparator</A>&gt;</CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparatorFactory.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorFactory.html#getComparators(java.lang.Class, liquibase.database.Database)">getComparators</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;comparatorClass, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparatorFactory.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorFactory.html#hash(liquibase.structure.DatabaseObject, liquibase.diff.compare.CompareControl.SchemaComparison[], liquibase.database.Database)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/diff/compare/CompareControl.SchemaComparison.html" title="class in liquibase.diff.compare">CompareControl.SchemaComparison</A>[]&nbsp;schemaComparisons, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparatorChain.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparatorFactory.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorFactory.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.diff.compare.CompareControl.SchemaComparison[], liquibase.database.Database)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object2, <A HREF="../../../liquibase/diff/compare/CompareControl.SchemaComparison.html" title="class in liquibase.diff.compare">CompareControl.SchemaComparison</A>[]&nbsp;schemaComparisons, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparatorChain.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/DatabaseObjectComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.diff.compare.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/diff/compare/core/package-summary.html">liquibase.diff.compare.core</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="../../../liquibase/diff/compare/core/package-summary.html">liquibase.diff.compare.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>ColumnComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/ColumnComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>DefaultDatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/DefaultDatabaseObjectComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>TableComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/TableComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>ForeignKeyComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/ForeignKeyComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclue)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>SchemaComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/SchemaComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>UniqueConstraintComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/UniqueConstraintComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>PrimaryKeyComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/PrimaryKeyComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>CatalogComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/CatalogComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A></CODE></FONT></TD> <TD><CODE><B>IndexComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/IndexComparator.html#findDifferences(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.CompareControl, liquibase.diff.compare.DatabaseObjectComparatorChain, java.util.Set)">findDifferences</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/CompareControl.html" title="class in liquibase.diff.compare">CompareControl</A>&nbsp;compareControl, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;exclude)</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;int</CODE></FONT></TD> <TD><CODE><B>ColumnComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/ColumnComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>DefaultDatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/DefaultDatabaseObjectComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>TableComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/TableComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ForeignKeyComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/ForeignKeyComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>SchemaComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/SchemaComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UniqueConstraintComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/UniqueConstraintComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>PrimaryKeyComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/PrimaryKeyComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>CatalogComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/CatalogComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>IndexComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/IndexComparator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>ColumnComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/ColumnComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>DefaultDatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/DefaultDatabaseObjectComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>TableComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/TableComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>ForeignKeyComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/ForeignKeyComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>SchemaComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/SchemaComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>UniqueConstraintComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/UniqueConstraintComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>PrimaryKeyComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/PrimaryKeyComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>CatalogComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/CatalogComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>IndexComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/IndexComparator.html#hash(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">hash</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ColumnComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/ColumnComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DefaultDatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/DefaultDatabaseObjectComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>TableComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/TableComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ForeignKeyComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/ForeignKeyComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SchemaComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/SchemaComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>UniqueConstraintComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/UniqueConstraintComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>PrimaryKeyComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/PrimaryKeyComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CatalogComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/CatalogComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>IndexComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/IndexComparator.html#isSameObject(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.diff.compare.DatabaseObjectComparatorChain)">isSameObject</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo, <A HREF="../../../liquibase/diff/compare/DatabaseObjectComparatorChain.html" title="class in liquibase.diff.compare">DatabaseObjectComparatorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>DefaultDatabaseObjectComparator.</B><B><A HREF="../../../liquibase/diff/compare/core/DefaultDatabaseObjectComparator.html#nameMatches(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database)">nameMatches</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject1, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;databaseObject2, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.diff.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/diff/core/package-summary.html">liquibase.diff.core</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="../../../liquibase/diff/core/package-summary.html">liquibase.diff.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>StandardDiffGenerator.</B><B><A HREF="../../../liquibase/diff/core/StandardDiffGenerator.html#supports(liquibase.database.Database, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.diff.output"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/diff/output/package-summary.html">liquibase.diff.output</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="../../../liquibase/diff/output/package-summary.html">liquibase.diff.output</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>DiffOutputControl.</B><B><A HREF="../../../liquibase/diff/output/DiffOutputControl.html#alreadyHandledChanged(liquibase.structure.DatabaseObject, liquibase.database.Database)">alreadyHandledChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DiffOutputControl.</B><B><A HREF="../../../liquibase/diff/output/DiffOutputControl.html#alreadyHandledMissing(liquibase.structure.DatabaseObject, liquibase.database.Database)">alreadyHandledMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DiffOutputControl.</B><B><A HREF="../../../liquibase/diff/output/DiffOutputControl.html#alreadyHandledUnexpected(liquibase.structure.DatabaseObject, liquibase.database.Database)">alreadyHandledUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>StandardObjectChangeFilter.</B><B><A HREF="../../../liquibase/diff/output/StandardObjectChangeFilter.html#include(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.database.Database)">include</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ObjectChangeFilter.</B><B><A HREF="../../../liquibase/diff/output/ObjectChangeFilter.html#includeChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.database.Database, liquibase.database.Database)">includeChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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;boolean</CODE></FONT></TD> <TD><CODE><B>StandardObjectChangeFilter.</B><B><A HREF="../../../liquibase/diff/output/StandardObjectChangeFilter.html#includeChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.database.Database, liquibase.database.Database)">includeChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ObjectChangeFilter.</B><B><A HREF="../../../liquibase/diff/output/ObjectChangeFilter.html#includeMissing(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.database.Database)">includeMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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;boolean</CODE></FONT></TD> <TD><CODE><B>StandardObjectChangeFilter.</B><B><A HREF="../../../liquibase/diff/output/StandardObjectChangeFilter.html#includeMissing(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.database.Database)">includeMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ObjectChangeFilter.</B><B><A HREF="../../../liquibase/diff/output/ObjectChangeFilter.html#includeUnexpected(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.database.Database)">includeUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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;boolean</CODE></FONT></TD> <TD><CODE><B>StandardObjectChangeFilter.</B><B><A HREF="../../../liquibase/diff/output/StandardObjectChangeFilter.html#includeUnexpected(liquibase.structure.DatabaseObject, liquibase.database.Database, liquibase.database.Database)">includeUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DiffOutputControl.</B><B><A HREF="../../../liquibase/diff/output/DiffOutputControl.html#shouldOutput(liquibase.structure.DatabaseObject, liquibase.database.Database)">shouldOutput</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;object, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.diff.output.changelog"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/diff/output/changelog/package-summary.html">liquibase.diff.output.changelog</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="../../../liquibase/diff/output/changelog/package-summary.html">liquibase.diff.output.changelog</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>DiffToChangeLog.</B><B><A HREF="../../../liquibase/diff/output/changelog/DiffToChangeLog.html#addDependencies(liquibase.util.DependencyUtil.DependencyGraph, java.util.List, java.util.Collection, liquibase.database.Database)">addDependencies</A></B>(<A HREF="../../../liquibase/util/DependencyUtil.DependencyGraph.html" title="class in liquibase.util">DependencyUtil.DependencyGraph</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;graph, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;schemas, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;missingObjects, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds dependencies to the graph as schema.object_name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorFactory.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorChain.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedObjectChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangedObjectChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorFactory.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorChain.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingObjectChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/MissingObjectChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorFactory.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorChain.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedObjectChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/UnexpectedObjectChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</A>&lt;<A HREF="../../../liquibase/diff/output/changelog/ChangeGenerator.html" title="interface in liquibase.diff.output.changelog">ChangeGenerator</A>&gt;</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorFactory.html#getGenerators(java.lang.Class, java.lang.Class, liquibase.database.Database)">getGenerators</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/diff/output/changelog/ChangeGenerator.html" title="interface in liquibase.diff.output.changelog">ChangeGenerator</A>&gt;&nbsp;generatorType, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&gt;</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorFactory.html#runAfterTypes(java.lang.Class, liquibase.database.Database, java.lang.Class)">runAfterTypes</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/diff/output/changelog/ChangeGenerator.html" title="interface in liquibase.diff.output.changelog">ChangeGenerator</A>&gt;&nbsp;changeGeneratorType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&gt;</CODE></FONT></TD> <TD><CODE><B>ChangeGeneratorFactory.</B><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorFactory.html#runBeforeTypes(java.lang.Class, liquibase.database.Database, java.lang.Class)">runBeforeTypes</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/diff/output/changelog/ChangeGenerator.html" title="interface in liquibase.diff.output.changelog">ChangeGenerator</A>&gt;&nbsp;changeGeneratorType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>DiffToChangeLog.</B><B><A HREF="../../../liquibase/diff/output/changelog/DiffToChangeLog.html#supportsSortingObjects(liquibase.database.Database)">supportsSortingObjects</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Used by <A HREF="../../../liquibase/diff/output/changelog/DiffToChangeLog.html#sortMissingObjects(java.util.Collection, liquibase.database.Database)"><CODE>DiffToChangeLog.sortMissingObjects(Collection, Database)</CODE></A> to determine whether to go into the sorting logic.</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="../../../liquibase/diff/output/changelog/package-summary.html">liquibase.diff.output.changelog</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorComparator.html#ChangeGeneratorComparator(java.lang.Class, liquibase.database.Database)">ChangeGeneratorComparator</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.diff.output.changelog.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/diff/output/changelog/core/package-summary.html">liquibase.diff.output.changelog.core</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="../../../liquibase/diff/output/changelog/core/package-summary.html">liquibase.diff.output.changelog.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedViewChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedViewChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedForeignKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedForeignKeyChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedIndexChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedIndexChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedColumnChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedTableChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedTableChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedPrimaryKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedPrimaryKeyChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedSequenceChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedSequenceChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>ChangedUniqueConstraintChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedUniqueConstraintChangeGenerator.html#fixChanged(liquibase.structure.DatabaseObject, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixChanged</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;changedObject, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingDataExternalFileChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingDataExternalFileChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;outputControl, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingPrimaryKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingPrimaryKeyChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingUniqueConstraintChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingUniqueConstraintChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingForeignKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingForeignKeyChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingDataChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingDataChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;outputControl, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisionDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingColumnChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingSequenceChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingSequenceChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingTableChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingTableChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingIndexChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingIndexChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>MissingViewChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingViewChangeGenerator.html#fixMissing(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixMissing</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;missingObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedUniqueConstraintChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedUniqueConstraintChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedSequenceChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedSequenceChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedTableChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedTableChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedIndexChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedIndexChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedViewChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedViewChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedPrimaryKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedPrimaryKeyChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedForeignKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedForeignKeyChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>[]</CODE></FONT></TD> <TD><CODE><B>UnexpectedColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedColumnChangeGenerator.html#fixUnexpected(liquibase.structure.DatabaseObject, liquibase.diff.output.DiffOutputControl, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.changelog.ChangeGeneratorChain)">fixUnexpected</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;unexpectedObject, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase, <A HREF="../../../liquibase/diff/output/changelog/ChangeGeneratorChain.html" title="class in liquibase.diff.output.changelog">ChangeGeneratorChain</A>&nbsp;chain)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingDataExternalFileChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingDataExternalFileChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingPrimaryKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingPrimaryKeyChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingUniqueConstraintChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingUniqueConstraintChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UnexpectedUniqueConstraintChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedUniqueConstraintChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangedViewChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedViewChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingForeignKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingForeignKeyChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UnexpectedSequenceChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedSequenceChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UnexpectedTableChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedTableChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingDataChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingDataChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UnexpectedIndexChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedIndexChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UnexpectedViewChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedViewChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingColumnChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangedForeignKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedForeignKeyChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UnexpectedPrimaryKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedPrimaryKeyChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangedIndexChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedIndexChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangedColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedColumnChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangedTableChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedTableChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingSequenceChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingSequenceChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingTableChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingTableChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangedPrimaryKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedPrimaryKeyChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingIndexChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingIndexChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UnexpectedForeignKeyChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedForeignKeyChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangedSequenceChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedSequenceChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>MissingViewChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingViewChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UnexpectedColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/UnexpectedColumnChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>ChangedUniqueConstraintChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedUniqueConstraintChangeGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangedColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedColumnChangeGenerator.html#handleAutoIncrementDifferences(liquibase.structure.core.Column, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, java.util.List, liquibase.database.Database, liquibase.database.Database)">handleAutoIncrementDifferences</A></B>(<A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;column, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangedColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedColumnChangeGenerator.html#handleDefaultValueDifferences(liquibase.structure.core.Column, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, java.util.List, liquibase.database.Database, liquibase.database.Database)">handleDefaultValueDifferences</A></B>(<A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;column, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangedColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedColumnChangeGenerator.html#handleNullableDifferences(liquibase.structure.core.Column, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, java.util.List, liquibase.database.Database, liquibase.database.Database)">handleNullableDifferences</A></B>(<A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;column, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangedColumnChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/ChangedColumnChangeGenerator.html#handleTypeDifferences(liquibase.structure.core.Column, liquibase.diff.ObjectDifferences, liquibase.diff.output.DiffOutputControl, java.util.List, liquibase.database.Database, liquibase.database.Database)">handleTypeDifferences</A></B>(<A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;column, <A HREF="../../../liquibase/diff/ObjectDifferences.html" title="class in liquibase.diff">ObjectDifferences</A>&nbsp;differences, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;control, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&gt;&nbsp;changes, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;comparisonDatabase)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>MissingTableChangeGenerator.</B><B><A HREF="../../../liquibase/diff/output/changelog/core/MissingTableChangeGenerator.html#setDefaultValue(liquibase.change.ColumnConfig, liquibase.structure.core.Column, liquibase.database.Database)">setDefaultValue</A></B>(<A HREF="../../../liquibase/change/ColumnConfig.html" title="class in liquibase.change">ColumnConfig</A>&nbsp;columnConfig, <A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;column, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.exception"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/exception/package-summary.html">liquibase.exception</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="../../../liquibase/exception/package-summary.html">liquibase.exception</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ValidationErrors.</B><B><A HREF="../../../liquibase/exception/ValidationErrors.html#checkDisallowedField(java.lang.String, java.lang.Object, liquibase.database.Database, java.lang.Class...)">checkDisallowedField</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;disallowedFieldName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&gt;...&nbsp;disallowedDatabases)</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">Constructors in <A HREF="../../../liquibase/exception/package-summary.html">liquibase.exception</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/exception/ChangeNotFoundException.html#ChangeNotFoundException(java.lang.String, liquibase.database.Database)">ChangeNotFoundException</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;name, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/exception/StatementNotSupportedOnDatabaseException.html#StatementNotSupportedOnDatabaseException(liquibase.statement.SqlStatement, liquibase.database.Database)">StatementNotSupportedOnDatabaseException</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/exception/StatementNotSupportedOnDatabaseException.html#StatementNotSupportedOnDatabaseException(java.lang.String, liquibase.statement.SqlStatement, liquibase.database.Database)">StatementNotSupportedOnDatabaseException</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;reason, <A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.executor"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/executor/package-summary.html">liquibase.executor</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">Fields in <A HREF="../../../liquibase/executor/package-summary.html">liquibase.executor</A> declared as <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>AbstractExecutor.</B><B><A HREF="../../../liquibase/executor/AbstractExecutor.html#database">database</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="../../../liquibase/executor/package-summary.html">liquibase.executor</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ExecutorService.</B><B><A HREF="../../../liquibase/executor/ExecutorService.html#clearExecutor(liquibase.database.Database)">clearExecutor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/executor/Executor.html" title="interface in liquibase.executor">Executor</A></CODE></FONT></TD> <TD><CODE><B>ExecutorService.</B><B><A HREF="../../../liquibase/executor/ExecutorService.html#getExecutor(liquibase.database.Database)">getExecutor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>Executor.</B><B><A HREF="../../../liquibase/executor/Executor.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>AbstractExecutor.</B><B><A HREF="../../../liquibase/executor/AbstractExecutor.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ExecutorService.</B><B><A HREF="../../../liquibase/executor/ExecutorService.html#setExecutor(liquibase.database.Database, liquibase.executor.Executor)">setExecutor</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/executor/Executor.html" title="interface in liquibase.executor">Executor</A>&nbsp;executor)</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">Constructors in <A HREF="../../../liquibase/executor/package-summary.html">liquibase.executor</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/executor/LoggingExecutor.html#LoggingExecutor(liquibase.executor.Executor, java.io.Writer, liquibase.database.Database)">LoggingExecutor</A></B>(<A HREF="../../../liquibase/executor/Executor.html" title="interface in liquibase.executor">Executor</A>&nbsp;delegatedExecutor, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</A>&nbsp;output, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.integration.ant"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/integration/ant/package-summary.html">liquibase.integration.ant</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="../../../liquibase/integration/ant/package-summary.html">liquibase.integration.ant</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>BaseLiquibaseTask.</B><B><A HREF="../../../liquibase/integration/ant/BaseLiquibaseTask.html#createDatabaseFromConfiguredDatabaseType()">createDatabaseFromConfiguredDatabaseType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>BaseLiquibaseTask.</B><B><A HREF="../../../liquibase/integration/ant/BaseLiquibaseTask.html#createDatabaseFromType(liquibase.integration.ant.type.DatabaseType)">createDatabaseFromType</A></B>(<A HREF="../../../liquibase/integration/ant/type/DatabaseType.html" title="class in liquibase.integration.ant.type">DatabaseType</A>&nbsp;databaseType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>BaseLiquibaseTask.</B><B><A HREF="../../../liquibase/integration/ant/BaseLiquibaseTask.html#createDatabaseObject(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">createDatabaseObject</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;driverClassName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseUrl, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;username, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;password, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultCatalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultSchemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseClass)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>Use <A HREF="../../../liquibase/integration/ant/BaseLiquibaseTask.html#createDatabaseFromType(liquibase.integration.ant.type.DatabaseType)"><CODE>BaseLiquibaseTask.createDatabaseFromType(DatabaseType)</CODE></A> instead.</I></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="../../../liquibase/integration/ant/package-summary.html">liquibase.integration.ant</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>BaseLiquibaseTask.</B><B><A HREF="../../../liquibase/integration/ant/BaseLiquibaseTask.html#closeDatabase(liquibase.database.Database)">closeDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Convenience method to safely close the database connection.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.integration.ant.type"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/integration/ant/type/package-summary.html">liquibase.integration.ant.type</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="../../../liquibase/integration/ant/type/package-summary.html">liquibase.integration.ant.type</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DatabaseType.</B><B><A HREF="../../../liquibase/integration/ant/type/DatabaseType.html#createDatabase()">createDatabase</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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DatabaseType.</B><B><A HREF="../../../liquibase/integration/ant/type/DatabaseType.html#createDatabase(java.lang.ClassLoader)">createDatabase</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/ClassLoader.html?is-external=true" title="class or interface in java.lang">ClassLoader</A>&nbsp;classLoader)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.integration.commandline"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/integration/commandline/package-summary.html">liquibase.integration.commandline</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="../../../liquibase/integration/commandline/package-summary.html">liquibase.integration.commandline</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#createDatabaseObject(java.lang.ClassLoader, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean, boolean, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">createDatabaseObject</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/ClassLoader.html?is-external=true" title="class or interface in java.lang">ClassLoader</A>&nbsp;classLoader, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;url, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;username, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;password, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;driver, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultCatalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultSchemaName, boolean&nbsp;outputDefaultCatalog, boolean&nbsp;outputDefaultSchema, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseClass, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;driverPropertiesFile, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;propertyProviderClass, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;liquibaseCatalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;liquibaseSchemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseChangeLogTableName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseChangeLogLockTableName)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>Use ResourceAccessor version</I></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#createDatabaseObject(liquibase.resource.ResourceAccessor, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean, boolean, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)">createDatabaseObject</A></B>(<A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;url, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;username, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;password, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;driver, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultCatalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultSchemaName, boolean&nbsp;outputDefaultCatalog, boolean&nbsp;outputDefaultSchema, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseClass, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;driverPropertiesFile, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;propertyProviderClass, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;liquibaseCatalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;liquibaseSchemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseChangeLogTableName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;databaseChangeLogLockTableName)</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="../../../liquibase/integration/commandline/package-summary.html">liquibase.integration.commandline</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</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>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#doDiff(liquibase.database.Database, liquibase.database.Database, java.lang.String)">doDiff</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;targetDatabase, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;snapshotTypes)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#doDiff(liquibase.database.Database, liquibase.database.Database, java.lang.String, liquibase.diff.compare.CompareControl.SchemaComparison[])">doDiff</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;targetDatabase, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;snapshotTypes, <A HREF="../../../liquibase/diff/compare/CompareControl.SchemaComparison.html" title="class in liquibase.diff.compare">CompareControl.SchemaComparison</A>[]&nbsp;schemaComparisons)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#doDiffToChangeLog(java.lang.String, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.DiffOutputControl, java.lang.String)">doDiffToChangeLog</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;changeLogFile, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;targetDatabase, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;diffOutputControl, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;snapshotTypes)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#doDiffToChangeLog(java.lang.String, liquibase.database.Database, liquibase.database.Database, liquibase.diff.output.DiffOutputControl, java.lang.String, liquibase.diff.compare.CompareControl.SchemaComparison[])">doDiffToChangeLog</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;changeLogFile, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;referenceDatabase, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;targetDatabase, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;diffOutputControl, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;snapshotTypes, <A HREF="../../../liquibase/diff/compare/CompareControl.SchemaComparison.html" title="class in liquibase.diff.compare">CompareControl.SchemaComparison</A>[]&nbsp;schemaComparisons)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#doGenerateChangeLog(java.lang.String, liquibase.database.Database, liquibase.CatalogAndSchema[], java.lang.String, java.lang.String, java.lang.String, java.lang.String, liquibase.diff.output.DiffOutputControl)">doGenerateChangeLog</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;changeLogFile, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;originalDatabase, <A HREF="../../../liquibase/CatalogAndSchema.html" title="class in liquibase">CatalogAndSchema</A>[]&nbsp;schemas, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;snapshotTypes, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;author, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;context, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;dataDir, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;diffOutputControl)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#doGenerateChangeLog(java.lang.String, liquibase.database.Database, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, liquibase.diff.output.DiffOutputControl)">doGenerateChangeLog</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;changeLogFile, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;originalDatabase, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;catalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;snapshotTypes, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;author, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;context, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;dataDir, <A HREF="../../../liquibase/diff/output/DiffOutputControl.html" title="class in liquibase.diff.output">DiffOutputControl</A>&nbsp;diffOutputControl)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../liquibase/changelog/visitor/ChangeExecListener.html" title="interface in liquibase.changelog.visitor">ChangeExecListener</A></CODE></FONT></TD> <TD><CODE><B>ChangeExecListenerUtils.</B><B><A HREF="../../../liquibase/integration/commandline/ChangeExecListenerUtils.html#getChangeExecListener(liquibase.database.Database, liquibase.resource.ResourceAccessor, java.lang.String, java.lang.String)">getChangeExecListener</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;changeExecListenerClass, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;changeExecListenerPropertiesFile)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CommandLineUtils.</B><B><A HREF="../../../liquibase/integration/commandline/CommandLineUtils.html#initializeDatabase(java.lang.String, java.lang.String, java.lang.String, liquibase.database.Database)">initializeDatabase</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;username, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultCatalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;defaultSchemaName, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Executes RawSqlStatements particular to each database engine to set the default schema for the given Database</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.integration.spring"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/integration/spring/package-summary.html">liquibase.integration.spring</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="../../../liquibase/integration/spring/package-summary.html">liquibase.integration.spring</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>SpringLiquibase.</B><B><A HREF="../../../liquibase/integration/spring/SpringLiquibase.html#createDatabase(java.sql.Connection, liquibase.resource.ResourceAccessor)">createDatabase</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/sql/Connection.html?is-external=true" title="class or interface in java.sql">Connection</A>&nbsp;c, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Subclasses may override this method add change some database settings such as default schema before returning the database object.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.lockservice"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/lockservice/package-summary.html">liquibase.lockservice</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">Fields in <A HREF="../../../liquibase/lockservice/package-summary.html">liquibase.lockservice</A> declared as <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>StandardLockService.</B><B><A HREF="../../../liquibase/lockservice/StandardLockService.html#database">database</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="../../../liquibase/lockservice/package-summary.html">liquibase.lockservice</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/lockservice/LockService.html" title="interface in liquibase.lockservice">LockService</A></CODE></FONT></TD> <TD><CODE><B>LockServiceFactory.</B><B><A HREF="../../../liquibase/lockservice/LockServiceFactory.html#getLockService(liquibase.database.Database)">getLockService</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>OfflineLockService.</B><B><A HREF="../../../liquibase/lockservice/OfflineLockService.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>StandardLockService.</B><B><A HREF="../../../liquibase/lockservice/StandardLockService.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>LockService.</B><B><A HREF="../../../liquibase/lockservice/LockService.html#setDatabase(liquibase.database.Database)">setDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>OfflineLockService.</B><B><A HREF="../../../liquibase/lockservice/OfflineLockService.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>StandardLockService.</B><B><A HREF="../../../liquibase/lockservice/StandardLockService.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>LockService.</B><B><A HREF="../../../liquibase/lockservice/LockService.html#supports(liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.precondition"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/precondition/package-summary.html">liquibase.precondition</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="../../../liquibase/precondition/package-summary.html">liquibase.precondition</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CustomPrecondition.</B><B><A HREF="../../../liquibase/precondition/CustomPrecondition.html#check(liquibase.database.Database)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>Precondition.</B><B><A HREF="../../../liquibase/precondition/Precondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CustomPreconditionWrapper.</B><B><A HREF="../../../liquibase/precondition/CustomPreconditionWrapper.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>Precondition.</B><B><A HREF="../../../liquibase/precondition/Precondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CustomPreconditionWrapper.</B><B><A HREF="../../../liquibase/precondition/CustomPreconditionWrapper.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>Precondition.</B><B><A HREF="../../../liquibase/precondition/Precondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>CustomPreconditionWrapper.</B><B><A HREF="../../../liquibase/precondition/CustomPreconditionWrapper.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.precondition.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/precondition/core/package-summary.html">liquibase.precondition.core</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="../../../liquibase/precondition/core/package-summary.html">liquibase.precondition.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>AndPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/AndPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>PrimaryKeyExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/PrimaryKeyExistsPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ColumnExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ColumnExistsPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SqlPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/SqlPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ViewExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ViewExistsPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ForeignKeyExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ForeignKeyExistsPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SequenceExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/SequenceExistsPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>NotPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/NotPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>OrPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/OrPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ObjectQuotingStrategyPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ObjectQuotingStrategyPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>RunningAsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/RunningAsPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>RowCountPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/RowCountPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>TableExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/TableExistsPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>PreconditionContainer.</B><B><A HREF="../../../liquibase/precondition/core/PreconditionContainer.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeLogPropertyDefinedPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ChangeLogPropertyDefinedPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>DBMSPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/DBMSPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ChangeSetExecutedPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ChangeSetExecutedPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>IndexExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/IndexExistsPrecondition.html#check(liquibase.database.Database, liquibase.changelog.DatabaseChangeLog, liquibase.changelog.ChangeSet)">check</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/changelog/DatabaseChangeLog.html" title="class in liquibase.changelog">DatabaseChangeLog</A>&nbsp;changeLog, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AndPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/AndPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>PrimaryKeyExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/PrimaryKeyExistsPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ColumnExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ColumnExistsPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SqlPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/SqlPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ViewExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ViewExistsPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ForeignKeyExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ForeignKeyExistsPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SequenceExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/SequenceExistsPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>NotPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/NotPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>OrPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/OrPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ObjectQuotingStrategyPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ObjectQuotingStrategyPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RunningAsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/RunningAsPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RowCountPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/RowCountPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>TableExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/TableExistsPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ChangeLogPropertyDefinedPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ChangeLogPropertyDefinedPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DBMSPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/DBMSPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ChangeSetExecutedPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ChangeSetExecutedPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>IndexExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/IndexExistsPrecondition.html#validate(liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>AndPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/AndPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>PrimaryKeyExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/PrimaryKeyExistsPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>ColumnExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ColumnExistsPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>SqlPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/SqlPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>ViewExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ViewExistsPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>ForeignKeyExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ForeignKeyExistsPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>SequenceExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/SequenceExistsPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>NotPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/NotPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>OrPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/OrPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>ObjectQuotingStrategyPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ObjectQuotingStrategyPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>RunningAsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/RunningAsPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>RowCountPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/RowCountPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>TableExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/TableExistsPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>ChangeLogPropertyDefinedPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ChangeLogPropertyDefinedPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>DBMSPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/DBMSPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>ChangeSetExecutedPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/ChangeSetExecutedPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>IndexExistsPrecondition.</B><B><A HREF="../../../liquibase/precondition/core/IndexExistsPrecondition.html#warn(liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.sdk.database"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/sdk/database/package-summary.html">liquibase.sdk.database</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">Classes in <A HREF="../../../liquibase/sdk/database/package-summary.html">liquibase.sdk.database</A> that implement <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</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="../../../liquibase/sdk/database/MockDatabase.html" title="class in liquibase.sdk.database">MockDatabase</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="../../../liquibase/sdk/database/package-summary.html">liquibase.sdk.database</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>MockDatabase.</B><B><A HREF="../../../liquibase/sdk/database/MockDatabase.html#equals(liquibase.structure.DatabaseObject, liquibase.database.Database)">equals</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;otherObject, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;accordingTo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.serializer.core.formattedsql"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/serializer/core/formattedsql/package-summary.html">liquibase.serializer.core.formattedsql</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="../../../liquibase/serializer/core/formattedsql/package-summary.html">liquibase.serializer.core.formattedsql</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>FormattedSqlChangeLogSerializer.</B><B><A HREF="../../../liquibase/serializer/core/formattedsql/FormattedSqlChangeLogSerializer.html#getTargetDatabase(liquibase.changelog.ChangeSet)">getTargetDatabase</A></B>(<A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.snapshot"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/snapshot/package-summary.html">liquibase.snapshot</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="../../../liquibase/snapshot/package-summary.html">liquibase.snapshot</A> that return <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>DatabaseSnapshot.</B><B><A HREF="../../../liquibase/snapshot/DatabaseSnapshot.html#getDatabase()">getDatabase</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="../../../liquibase/snapshot/package-summary.html">liquibase.snapshot</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>SnapshotControl.</B><B><A HREF="../../../liquibase/snapshot/SnapshotControl.html#addType(java.lang.Class, liquibase.database.Database)">addType</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;type, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/snapshot/SnapshotGeneratorChain.html" title="class in liquibase.snapshot">SnapshotGeneratorChain</A></CODE></FONT></TD> <TD><CODE><B>DatabaseSnapshot.</B><B><A HREF="../../../liquibase/snapshot/DatabaseSnapshot.html#createGeneratorChain(java.lang.Class, liquibase.database.Database)">createGeneratorChain</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;databaseObjectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/snapshot/DatabaseSnapshot.html" title="class in liquibase.snapshot">DatabaseSnapshot</A></CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#createSnapshot(liquibase.CatalogAndSchema[], liquibase.database.Database, liquibase.snapshot.SnapshotControl)">createSnapshot</A></B>(<A HREF="../../../liquibase/CatalogAndSchema.html" title="class in liquibase">CatalogAndSchema</A>[]&nbsp;examples, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;snapshotControl)</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="../../../liquibase/snapshot/DatabaseSnapshot.html" title="class in liquibase.snapshot">DatabaseSnapshot</A></CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#createSnapshot(liquibase.CatalogAndSchema, liquibase.database.Database, liquibase.snapshot.SnapshotControl)">createSnapshot</A></B>(<A HREF="../../../liquibase/CatalogAndSchema.html" title="class in liquibase">CatalogAndSchema</A>&nbsp;example, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;snapshotControl)</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="../../../liquibase/snapshot/DatabaseSnapshot.html" title="class in liquibase.snapshot">DatabaseSnapshot</A></CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#createSnapshot(liquibase.structure.DatabaseObject[], liquibase.database.Database, liquibase.snapshot.SnapshotControl)">createSnapshot</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>[]&nbsp;examples, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;snapshotControl)</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> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;T extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt; <BR> T</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#createSnapshot(T, liquibase.database.Database)">createSnapshot</A></B>(T&nbsp;example, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;T extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt; <BR> T</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#createSnapshot(T, liquibase.database.Database, liquibase.snapshot.SnapshotControl)">createSnapshot</A></B>(T&nbsp;example, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;snapshotControl)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SnapshotListener.</B><B><A HREF="../../../liquibase/snapshot/SnapshotListener.html#finishedSnapshot(liquibase.structure.DatabaseObject, liquibase.structure.DatabaseObject, liquibase.database.Database)">finishedSnapshot</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;example, <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;snapshot, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called after an object is fully loaded from the database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&gt;</CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#getContainerTypes(java.lang.Class, liquibase.database.Database)">getContainerTypes</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;type, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/structure/core/Table.html" title="class in liquibase.structure.core">Table</A></CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#getDatabaseChangeLogLockTable(liquibase.database.Database)">getDatabaseChangeLogLockTable</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/structure/core/Table.html" title="class in liquibase.structure.core">Table</A></CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#getDatabaseChangeLogTable(liquibase.snapshot.SnapshotControl, liquibase.database.Database)">getDatabaseChangeLogTable</A></B>(<A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;snapshotControl, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</A>&lt;<A HREF="../../../liquibase/snapshot/SnapshotGenerator.html" title="interface in liquibase.snapshot">SnapshotGenerator</A>&gt;</CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#getGenerators(java.lang.Class, liquibase.database.Database)">getGenerators</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;generatorClass, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>SnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#has(liquibase.structure.DatabaseObject, liquibase.database.Database)">has</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;example, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#hasDatabaseChangeLogLockTable(liquibase.database.Database)">hasDatabaseChangeLogLockTable</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SnapshotGeneratorFactory.</B><B><A HREF="../../../liquibase/snapshot/SnapshotGeneratorFactory.html#hasDatabaseChangeLogTable(liquibase.database.Database)">hasDatabaseChangeLogTable</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SnapshotListener.</B><B><A HREF="../../../liquibase/snapshot/SnapshotListener.html#willSnapshot(liquibase.structure.DatabaseObject, liquibase.database.Database)">willSnapshot</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&nbsp;example, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called before a snapshot is done.</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="../../../liquibase/snapshot/package-summary.html">liquibase.snapshot</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/DatabaseSnapshot.html#DatabaseSnapshot(liquibase.structure.DatabaseObject[], liquibase.database.Database)">DatabaseSnapshot</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>[]&nbsp;examples, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/EmptyDatabaseSnapshot.html#EmptyDatabaseSnapshot(liquibase.database.Database)">EmptyDatabaseSnapshot</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/EmptyDatabaseSnapshot.html#EmptyDatabaseSnapshot(liquibase.database.Database, liquibase.snapshot.SnapshotControl)">EmptyDatabaseSnapshot</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;snapshotControl)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/JdbcDatabaseSnapshot.CachingDatabaseMetaData.html#JdbcDatabaseSnapshot.CachingDatabaseMetaData(liquibase.database.Database, java.sql.DatabaseMetaData)">JdbcDatabaseSnapshot.CachingDatabaseMetaData</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/sql/DatabaseMetaData.html?is-external=true" title="class or interface in java.sql">DatabaseMetaData</A>&nbsp;metaData)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/JdbcDatabaseSnapshot.html#JdbcDatabaseSnapshot(liquibase.structure.DatabaseObject[], liquibase.database.Database)">JdbcDatabaseSnapshot</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>[]&nbsp;examples, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/JdbcDatabaseSnapshot.html#JdbcDatabaseSnapshot(liquibase.structure.DatabaseObject[], liquibase.database.Database, liquibase.snapshot.SnapshotControl)">JdbcDatabaseSnapshot</A></B>(<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>[]&nbsp;examples, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/snapshot/SnapshotControl.html" title="class in liquibase.snapshot">SnapshotControl</A>&nbsp;snapshotControl)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/RestoredDatabaseSnapshot.html#RestoredDatabaseSnapshot(liquibase.database.Database)">RestoredDatabaseSnapshot</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/SnapshotControl.html#SnapshotControl(liquibase.database.Database)">SnapshotControl</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/SnapshotControl.html#SnapshotControl(liquibase.database.Database, boolean, java.lang.Class...)">SnapshotControl</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, boolean&nbsp;expandTypesIfNeeded, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;...&nbsp;types)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/SnapshotControl.html#SnapshotControl(liquibase.database.Database, java.lang.Class...)">SnapshotControl</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;...&nbsp;types)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/snapshot/SnapshotControl.html#SnapshotControl(liquibase.database.Database, java.lang.String)">SnapshotControl</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;types)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.snapshot.jvm"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/snapshot/jvm/package-summary.html">liquibase.snapshot.jvm</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="../../../liquibase/snapshot/jvm/package-summary.html">liquibase.snapshot.jvm</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>JdbcSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/JdbcSnapshotGenerator.html#cleanNameFromDatabase(java.lang.String, liquibase.database.Database)">cleanNameFromDatabase</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;objectName, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/structure/core/ForeignKeyConstraintType.html" title="enum in liquibase.structure.core">ForeignKeyConstraintType</A></CODE></FONT></TD> <TD><CODE><B>ForeignKeySnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/ForeignKeySnapshotGenerator.html#convertToForeignKeyConstraintType(java.lang.Integer, liquibase.database.Database)">convertToForeignKeyConstraintType</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>&nbsp;jdbcType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>CatalogSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/CatalogSnapshotGenerator.html#getDatabaseCatalogNames(liquibase.database.Database)">getDatabaseCatalogNames</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]</CODE></FONT></TD> <TD><CODE><B>SchemaSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/SchemaSnapshotGenerator.html#getDatabaseSchemaNames(liquibase.database.Database)">getDatabaseSchemaNames</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>UniqueConstraintSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/UniqueConstraintSnapshotGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>JdbcSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/JdbcSnapshotGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;int</CODE></FONT></TD> <TD><CODE><B>H2ColumnSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/H2ColumnSnapshotGenerator.html#getPriority(java.lang.Class, liquibase.database.Database)">getPriority</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;&nbsp;objectType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>SequenceSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/SequenceSnapshotGenerator.html#getSelectSequenceSql(liquibase.structure.core.Schema, liquibase.database.Database)">getSelectSequenceSql</A></B>(<A HREF="../../../liquibase/structure/core/Schema.html" title="class in liquibase.structure.core">Schema</A>&nbsp;schema, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>CatalogSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/CatalogSnapshotGenerator.html#isDefaultCatalog(liquibase.structure.core.Catalog, liquibase.database.Database)">isDefaultCatalog</A></B>(<A HREF="../../../liquibase/structure/core/Catalog.html" title="class in liquibase.structure.core">Catalog</A>&nbsp;match, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,?&gt;&gt;</CODE></FONT></TD> <TD><CODE><B>UniqueConstraintSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/UniqueConstraintSnapshotGenerator.html#listColumns(liquibase.structure.core.UniqueConstraint, liquibase.database.Database, liquibase.snapshot.DatabaseSnapshot)">listColumns</A></B>(<A HREF="../../../liquibase/structure/core/UniqueConstraint.html" title="class in liquibase.structure.core">UniqueConstraint</A>&nbsp;example, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/snapshot/DatabaseSnapshot.html" title="class in liquibase.snapshot">DatabaseSnapshot</A>&nbsp;snapshot)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A></CODE></FONT></TD> <TD><CODE><B>ColumnSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/ColumnSnapshotGenerator.html#readColumn(liquibase.snapshot.CachedRow, liquibase.structure.core.Relation, liquibase.database.Database)">readColumn</A></B>(<A HREF="../../../liquibase/snapshot/CachedRow.html" title="class in liquibase.snapshot">CachedRow</A>&nbsp;columnMetadataResultSet, <A HREF="../../../liquibase/structure/core/Relation.html" title="class in liquibase.structure.core">Relation</A>&nbsp;table, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/structure/core/DataType.html" title="class in liquibase.structure.core">DataType</A></CODE></FONT></TD> <TD><CODE><B>ColumnSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/ColumnSnapshotGenerator.html#readDataType(liquibase.snapshot.CachedRow, liquibase.structure.core.Column, liquibase.database.Database)">readDataType</A></B>(<A HREF="../../../liquibase/snapshot/CachedRow.html" title="class in liquibase.snapshot">CachedRow</A>&nbsp;columnMetadataResultSet, <A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;column, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>ColumnSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/ColumnSnapshotGenerator.html#readDefaultValue(liquibase.snapshot.CachedRow, liquibase.structure.core.Column, liquibase.database.Database)">readDefaultValue</A></B>(<A HREF="../../../liquibase/snapshot/CachedRow.html" title="class in liquibase.snapshot">CachedRow</A>&nbsp;columnMetadataResultSet, <A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;columnInfo, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>H2ColumnSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/H2ColumnSnapshotGenerator.html#readDefaultValue(liquibase.snapshot.CachedRow, liquibase.structure.core.Column, liquibase.database.Database)">readDefaultValue</A></B>(<A HREF="../../../liquibase/snapshot/CachedRow.html" title="class in liquibase.snapshot">CachedRow</A>&nbsp;columnMetadataResultSet, <A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;columnInfo, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/structure/core/Table.html" title="class in liquibase.structure.core">Table</A></CODE></FONT></TD> <TD><CODE><B>TableSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/TableSnapshotGenerator.html#readTable(liquibase.snapshot.CachedRow, liquibase.database.Database)">readTable</A></B>(<A HREF="../../../liquibase/snapshot/CachedRow.html" title="class in liquibase.snapshot">CachedRow</A>&nbsp;tableMetadataResultSet, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>ColumnSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/ColumnSnapshotGenerator.html#setAutoIncrementDetails(liquibase.structure.core.Column, liquibase.database.Database, liquibase.snapshot.DatabaseSnapshot)">setAutoIncrementDetails</A></B>(<A HREF="../../../liquibase/structure/core/Column.html" title="class in liquibase.structure.core">Column</A>&nbsp;column, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/snapshot/DatabaseSnapshot.html" title="class in liquibase.snapshot">DatabaseSnapshot</A>&nbsp;snapshot)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/math/BigInteger.html?is-external=true" title="class or interface in java.math">BigInteger</A></CODE></FONT></TD> <TD><CODE><B>SequenceSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/SequenceSnapshotGenerator.html#toBigInteger(java.lang.Object, liquibase.database.Database)">toBigInteger</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</A></CODE></FONT></TD> <TD><CODE><B>SequenceSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/SequenceSnapshotGenerator.html#toBoolean(java.lang.Object, liquibase.database.Database)">toBoolean</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/CatalogAndSchema.html" title="class in liquibase">CatalogAndSchema</A></CODE></FONT></TD> <TD><CODE><B>SchemaSnapshotGenerator.</B><B><A HREF="../../../liquibase/snapshot/jvm/SchemaSnapshotGenerator.html#toCatalogAndSchema(java.lang.String, liquibase.database.Database)">toCatalogAndSchema</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;tableSchema, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.sql.visitor"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/sql/visitor/package-summary.html">liquibase.sql.visitor</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="../../../liquibase/sql/visitor/package-summary.html">liquibase.sql.visitor</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>AppendSqlVisitor.</B><B><A HREF="../../../liquibase/sql/visitor/AppendSqlVisitor.html#modifySql(java.lang.String, liquibase.database.Database)">modifySql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;sql, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>RegExpReplaceSqlVisitor.</B><B><A HREF="../../../liquibase/sql/visitor/RegExpReplaceSqlVisitor.html#modifySql(java.lang.String, liquibase.database.Database)">modifySql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;sql, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>ReplaceSqlVisitor.</B><B><A HREF="../../../liquibase/sql/visitor/ReplaceSqlVisitor.html#modifySql(java.lang.String, liquibase.database.Database)">modifySql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;sql, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>SqlVisitor.</B><B><A HREF="../../../liquibase/sql/visitor/SqlVisitor.html#modifySql(java.lang.String, liquibase.database.Database)">modifySql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;sql, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>PrependSqlVisitor.</B><B><A HREF="../../../liquibase/sql/visitor/PrependSqlVisitor.html#modifySql(java.lang.String, liquibase.database.Database)">modifySql</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;sql, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.sqlgenerator"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/sqlgenerator/package-summary.html">liquibase.sqlgenerator</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="../../../liquibase/sqlgenerator/package-summary.html">liquibase.sqlgenerator</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>SqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#generateRollbackStatementsIsVolatile(liquibase.database.Database)">generateRollbackStatementsIsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#generateRollbackStatementsVolatile(liquibase.statement.SqlStatement, liquibase.database.Database)">generateRollbackStatementsVolatile</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#generateSql(liquibase.change.Change, liquibase.database.Database)">generateSql</A></B>(<A HREF="../../../liquibase/change/Change.html" title="interface in liquibase.change">Change</A>&nbsp;change, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#generateSql(liquibase.statement.SqlStatement[], liquibase.database.Database)">generateSql</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>[]&nbsp;statements, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorChain.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html#generateSql(liquibase.statement.SqlStatement, liquibase.database.Database)">generateSql</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#generateSql(liquibase.statement.SqlStatement, liquibase.database.Database)">generateSql</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#generateSql(StatementType, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html" title="type parameter in SqlGenerator">StatementType</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generate the actual Sql for the given statement and database.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>SqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#generateStatementsIsVolatile(liquibase.database.Database)">generateStatementsIsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Does this change require access to the database metadata? If true, the change cannot be used in an updateSql-style command.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#generateStatementsVolatile(liquibase.statement.SqlStatement, liquibase.database.Database)">generateStatementsVolatile</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return true if the SqlStatement class queries the database in any way to determine Statements to execute.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;<A HREF="../../../liquibase/structure/DatabaseObject.html" title="interface in liquibase.structure">DatabaseObject</A>&gt;</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#getAffectedDatabaseObjects(liquibase.statement.SqlStatement, liquibase.database.Database)">getAffectedDatabaseObjects</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</A>&lt;<A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html" title="interface in liquibase.sqlgenerator">SqlGenerator</A>&gt;</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#getGenerators(liquibase.statement.SqlStatement, liquibase.database.Database)">getGenerators</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#supports(liquibase.statement.SqlStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#supports(StatementType, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html" title="type parameter in SqlGenerator">StatementType</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Does this generator support the given statement/database combination? Do not validate the statement with this method, only return if it <i>can</i> suppot it.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SqlGeneratorChain.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html#validate(liquibase.statement.SqlStatement, liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#validate(liquibase.statement.SqlStatement, liquibase.database.Database)">validate</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#validate(StatementType, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html" title="type parameter in SqlGenerator">StatementType</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Validate the data contained in the SqlStatement.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>SqlGeneratorChain.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html#warn(liquibase.statement.SqlStatement, liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>SqlGeneratorFactory.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGeneratorFactory.html#warn(liquibase.statement.SqlStatement, liquibase.database.Database)">warn</A></B>(<A HREF="../../../liquibase/statement/SqlStatement.html" title="interface in liquibase.statement">SqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>SqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html#warn(StatementType, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">warn</A></B>(<A HREF="../../../liquibase/sqlgenerator/SqlGenerator.html" title="type parameter in SqlGenerator">StatementType</A>&nbsp;statementType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.sqlgenerator.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/sqlgenerator/core/package-summary.html">liquibase.sqlgenerator.core</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="../../../liquibase/sqlgenerator/core/package-summary.html">liquibase.sqlgenerator.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>AddColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGenerator.html#addForeignKeyStatements(liquibase.statement.core.AddColumnStatement, liquibase.database.Database, java.util.List)">addForeignKeyStatements</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>&gt;&nbsp;returnSql)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>CreateProcedureGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateProcedureGenerator.html#addSchemaToText(java.lang.String, java.lang.String, java.lang.String, liquibase.database.Database)">addSchemaToText</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;procedureText, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;keywordBeforeName, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Convenience method for other classes similar to this that want to be able to modify the procedure text to add the schema</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>AddColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGenerator.html#addUniqueConstrantStatements(liquibase.statement.core.AddColumnStatement, liquibase.database.Database, java.util.List)">addUniqueConstrantStatements</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>&gt;&nbsp;returnSql)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>TableRowCountGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/TableRowCountGenerator.html#generateCountSql(liquibase.statement.core.TableRowCountStatement, liquibase.database.Database)">generateCountSql</A></B>(<A HREF="../../../liquibase/statement/core/TableRowCountStatement.html" title="class in liquibase.statement.core">TableRowCountStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>InsertSetGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertSetGenerator.html#generateHeader(java.lang.StringBuffer, liquibase.statement.core.InsertSetStatement, liquibase.database.Database)">generateHeader</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/StringBuffer.html?is-external=true" title="class or interface in java.lang">StringBuffer</A>&nbsp;sql, <A HREF="../../../liquibase/statement/core/InsertSetStatement.html" title="class in liquibase.statement.core">InsertSetStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>InsertGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertGenerator.html#generateHeader(java.lang.StringBuffer, liquibase.statement.core.InsertStatement, liquibase.database.Database)">generateHeader</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/StringBuffer.html?is-external=true" title="class or interface in java.lang">StringBuffer</A>&nbsp;sql, <A HREF="../../../liquibase/statement/core/InsertStatement.html" title="class in liquibase.statement.core">InsertStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractSqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AbstractSqlGenerator.html#generateRollbackStatementsIsVolatile(liquibase.database.Database)">generateRollbackStatementsIsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>AddColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGenerator.html#generateSingleColumBaseSQL(liquibase.statement.core.AddColumnStatement, liquibase.database.Database)">generateSingleColumBaseSQL</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGenerator.html#generateSingleColumn(liquibase.statement.core.AddColumnStatement, liquibase.database.Database)">generateSingleColumn</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>AddColumnGeneratorDefaultClauseBeforeNotNull.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGeneratorDefaultClauseBeforeNotNull.html#generateSingleColumnSQL(liquibase.statement.core.AddColumnStatement, liquibase.database.Database)">generateSingleColumnSQL</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>AddColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGenerator.html#generateSingleColumnSQL(liquibase.statement.core.AddColumnStatement, liquibase.database.Database)">generateSingleColumnSQL</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorMySQL.html#generateSql(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorDB2.html#generateSql(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGenerator.html#generateSql(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorSQLite.html#generateSql(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorHsqlH2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorHsqlH2.html#generateSql(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorInformix.html#generateSql(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddColumnGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGeneratorSQLite.html#generateSql(liquibase.statement.core.AddColumnStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGenerator.html#generateSql(liquibase.statement.core.AddColumnStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorSybaseASA.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorSybaseASA.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGenerator.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorMSSQL.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueSQLite.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorOracle.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorSybase.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorSybase.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorMySQL.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorDerby.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorDerby.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorPostgres.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorInformix.html#generateSql(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddForeignKeyConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddForeignKeyConstraintGenerator.html#generateSql(liquibase.statement.core.AddForeignKeyConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddForeignKeyConstraintStatement.html" title="class in liquibase.statement.core">AddForeignKeyConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddPrimaryKeyGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddPrimaryKeyGenerator.html#generateSql(liquibase.statement.core.AddPrimaryKeyStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddPrimaryKeyStatement.html" title="class in liquibase.statement.core">AddPrimaryKeyStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddPrimaryKeyGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddPrimaryKeyGeneratorInformix.html#generateSql(liquibase.statement.core.AddPrimaryKeyStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddPrimaryKeyStatement.html" title="class in liquibase.statement.core">AddPrimaryKeyStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintGeneratorTDS.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddUniqueConstraintGeneratorTDS.html#generateSql(liquibase.statement.core.AddUniqueConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddUniqueConstraintStatement.html" title="class in liquibase.statement.core">AddUniqueConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddUniqueConstraintGenerator.html#generateSql(liquibase.statement.core.AddUniqueConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddUniqueConstraintStatement.html" title="class in liquibase.statement.core">AddUniqueConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddUniqueConstraintGeneratorInformix.html#generateSql(liquibase.statement.core.AddUniqueConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AddUniqueConstraintStatement.html" title="class in liquibase.statement.core">AddUniqueConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>AlterSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AlterSequenceGenerator.html#generateSql(liquibase.statement.core.AlterSequenceStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/AlterSequenceStatement.html" title="class in liquibase.statement.core">AlterSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>ClearDatabaseChangeLogTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ClearDatabaseChangeLogTableGenerator.html#generateSql(liquibase.statement.core.ClearDatabaseChangeLogTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/ClearDatabaseChangeLogTableStatement.html" title="class in liquibase.statement.core">ClearDatabaseChangeLogTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CommentGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CommentGenerator.html#generateSql(liquibase.statement.core.CommentStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CommentStatement.html" title="class in liquibase.statement.core">CommentStatement</A>&nbsp;comment, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CopyRowsGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CopyRowsGenerator.html#generateSql(liquibase.statement.core.CopyRowsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CopyRowsStatement.html" title="class in liquibase.statement.core">CopyRowsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogLockTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogLockTableGenerator.html#generateSql(liquibase.statement.core.CreateDatabaseChangeLogLockTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateDatabaseChangeLogLockTableStatement.html" title="class in liquibase.statement.core">CreateDatabaseChangeLogLockTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGeneratorSybase.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGeneratorSybase.html#generateSql(liquibase.statement.core.CreateDatabaseChangeLogTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateDatabaseChangeLogTableStatement.html" title="class in liquibase.statement.core">CreateDatabaseChangeLogTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGenerator.html#generateSql(liquibase.statement.core.CreateDatabaseChangeLogTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateDatabaseChangeLogTableStatement.html" title="class in liquibase.statement.core">CreateDatabaseChangeLogTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateIndexGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateIndexGenerator.html#generateSql(liquibase.statement.core.CreateIndexStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateIndexStatement.html" title="class in liquibase.statement.core">CreateIndexStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateIndexGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateIndexGeneratorPostgres.html#generateSql(liquibase.statement.core.CreateIndexStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateIndexStatement.html" title="class in liquibase.statement.core">CreateIndexStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateProcedureGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateProcedureGenerator.html#generateSql(liquibase.statement.core.CreateProcedureStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateProcedureStatement.html" title="class in liquibase.statement.core">CreateProcedureStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateSequenceGenerator.html#generateSql(liquibase.statement.core.CreateSequenceStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateSequenceStatement.html" title="class in liquibase.statement.core">CreateSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateTableGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateTableGeneratorInformix.html#generateSql(liquibase.statement.core.CreateTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateTableStatement.html" title="class in liquibase.statement.core">CreateTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateTableGenerator.html#generateSql(liquibase.statement.core.CreateTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateTableStatement.html" title="class in liquibase.statement.core">CreateTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateViewGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateViewGeneratorInformix.html#generateSql(liquibase.statement.core.CreateViewStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateViewStatement.html" title="class in liquibase.statement.core">CreateViewStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>CreateViewGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateViewGenerator.html#generateSql(liquibase.statement.core.CreateViewStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/CreateViewStatement.html" title="class in liquibase.statement.core">CreateViewStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DeleteGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DeleteGenerator.html#generateSql(liquibase.statement.core.DeleteStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DeleteStatement.html" title="class in liquibase.statement.core">DeleteStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropColumnGenerator.html#generateSql(liquibase.statement.core.DropColumnStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropColumnStatement.html" title="class in liquibase.statement.core">DropColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropDefaultValueGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropDefaultValueGenerator.html#generateSql(liquibase.statement.core.DropDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropDefaultValueStatement.html" title="class in liquibase.statement.core">DropDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropForeignKeyConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropForeignKeyConstraintGenerator.html#generateSql(liquibase.statement.core.DropForeignKeyConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropForeignKeyConstraintStatement.html" title="class in liquibase.statement.core">DropForeignKeyConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropIndexGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropIndexGenerator.html#generateSql(liquibase.statement.core.DropIndexStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropIndexStatement.html" title="class in liquibase.statement.core">DropIndexStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropPrimaryKeyGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropPrimaryKeyGenerator.html#generateSql(liquibase.statement.core.DropPrimaryKeyStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropPrimaryKeyStatement.html" title="class in liquibase.statement.core">DropPrimaryKeyStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropProcedureGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropProcedureGenerator.html#generateSql(liquibase.statement.core.DropProcedureStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropProcedureStatement.html" title="class in liquibase.statement.core">DropProcedureStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropSequenceGenerator.html#generateSql(liquibase.statement.core.DropSequenceStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropSequenceStatement.html" title="class in liquibase.statement.core">DropSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropTableGenerator.html#generateSql(liquibase.statement.core.DropTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropTableStatement.html" title="class in liquibase.statement.core">DropTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropUniqueConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropUniqueConstraintGenerator.html#generateSql(liquibase.statement.core.DropUniqueConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropUniqueConstraintStatement.html" title="class in liquibase.statement.core">DropUniqueConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>DropViewGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropViewGenerator.html#generateSql(liquibase.statement.core.DropViewStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/DropViewStatement.html" title="class in liquibase.statement.core">DropViewStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorMSSQL.html#generateSql(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorDerby.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorDerby.html#generateSql(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorHsql.html#generateSql(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorOracle.html#generateSql(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorMySQL.html#generateSql(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorFirebird.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorFirebird.html#generateSql(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorDB2.html#generateSql(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorPostgres.html#generateSql(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetNextChangeSetSequenceValueGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetNextChangeSetSequenceValueGenerator.html#generateSql(liquibase.statement.core.GetNextChangeSetSequenceValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetNextChangeSetSequenceValueStatement.html" title="class in liquibase.statement.core">GetNextChangeSetSequenceValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorDB2.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorHsql.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorOracle.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorInformix.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorPostgres.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorSybaseASA.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorSybaseASA.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorFirebird.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorFirebird.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorMSSQL.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorSybase.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorSybase.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorDerby.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorDerby.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGenerator.html#generateSql(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>InitializeDatabaseChangeLogLockTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InitializeDatabaseChangeLogLockTableGenerator.html#generateSql(liquibase.statement.core.InitializeDatabaseChangeLogLockTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/InitializeDatabaseChangeLogLockTableStatement.html" title="class in liquibase.statement.core">InitializeDatabaseChangeLogLockTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>InsertDataChangeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertDataChangeGenerator.html#generateSql(liquibase.statement.InsertExecutablePreparedStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/InsertExecutablePreparedStatement.html" title="class in liquibase.statement">InsertExecutablePreparedStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGenerator.html#generateSql(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorPostgres.html#generateSql(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMSSQL.html#generateSql(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>InsertSetGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertSetGenerator.html#generateSql(liquibase.statement.core.InsertSetStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/InsertSetStatement.html" title="class in liquibase.statement.core">InsertSetStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>InsertGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertGenerator.html#generateSql(liquibase.statement.core.InsertStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/InsertStatement.html" title="class in liquibase.statement.core">InsertStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>LockDatabaseChangeLogGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/LockDatabaseChangeLogGenerator.html#generateSql(liquibase.statement.core.LockDatabaseChangeLogStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/LockDatabaseChangeLogStatement.html" title="class in liquibase.statement.core">LockDatabaseChangeLogStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>MarkChangeSetRanGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/MarkChangeSetRanGenerator.html#generateSql(liquibase.statement.core.MarkChangeSetRanStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/MarkChangeSetRanStatement.html" title="class in liquibase.statement.core">MarkChangeSetRanStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>ModifyDataTypeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ModifyDataTypeGenerator.html#generateSql(liquibase.statement.core.ModifyDataTypeStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/ModifyDataTypeStatement.html" title="class in liquibase.statement.core">ModifyDataTypeStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>RawSqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RawSqlGenerator.html#generateSql(liquibase.statement.core.RawSqlStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/RawSqlStatement.html" title="class in liquibase.statement.core">RawSqlStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>ReindexGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ReindexGeneratorSQLite.html#generateSql(liquibase.statement.core.ReindexStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/ReindexStatement.html" title="class in liquibase.statement.core">ReindexStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>RemoveChangeSetRanStatusGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RemoveChangeSetRanStatusGenerator.html#generateSql(liquibase.statement.core.RemoveChangeSetRanStatusStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/RemoveChangeSetRanStatusStatement.html" title="class in liquibase.statement.core">RemoveChangeSetRanStatusStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>RenameColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameColumnGenerator.html#generateSql(liquibase.statement.core.RenameColumnStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/RenameColumnStatement.html" title="class in liquibase.statement.core">RenameColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>RenameSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameSequenceGenerator.html#generateSql(liquibase.statement.core.RenameSequenceStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/RenameSequenceStatement.html" title="class in liquibase.statement.core">RenameSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>RenameTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameTableGenerator.html#generateSql(liquibase.statement.core.RenameTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/RenameTableStatement.html" title="class in liquibase.statement.core">RenameTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>RenameViewGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameViewGenerator.html#generateSql(liquibase.statement.core.RenameViewStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/RenameViewStatement.html" title="class in liquibase.statement.core">RenameViewStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>ReorganizeTableGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ReorganizeTableGeneratorDB2.html#generateSql(liquibase.statement.core.ReorganizeTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/ReorganizeTableStatement.html" title="class in liquibase.statement.core">ReorganizeTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>RuntimeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RuntimeGenerator.html#generateSql(liquibase.statement.core.RuntimeStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/RuntimeStatement.html" title="class in liquibase.statement.core">RuntimeStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SelectFromDatabaseChangeLogLockGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SelectFromDatabaseChangeLogLockGenerator.html#generateSql(liquibase.statement.core.SelectFromDatabaseChangeLogLockStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/SelectFromDatabaseChangeLogLockStatement.html" title="class in liquibase.statement.core">SelectFromDatabaseChangeLogLockStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SelectFromDatabaseChangeLogGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SelectFromDatabaseChangeLogGenerator.html#generateSql(liquibase.statement.core.SelectFromDatabaseChangeLogStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/SelectFromDatabaseChangeLogStatement.html" title="class in liquibase.statement.core">SelectFromDatabaseChangeLogStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SetColumnRemarksGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetColumnRemarksGenerator.html#generateSql(liquibase.statement.core.SetColumnRemarksStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/SetColumnRemarksStatement.html" title="class in liquibase.statement.core">SetColumnRemarksStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SetNullableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetNullableGenerator.html#generateSql(liquibase.statement.core.SetNullableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/SetNullableStatement.html" title="class in liquibase.statement.core">SetNullableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>SetTableRemarksGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetTableRemarksGenerator.html#generateSql(liquibase.statement.core.SetTableRemarksStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/SetTableRemarksStatement.html" title="class in liquibase.statement.core">SetTableRemarksStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>StoredProcedureGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/StoredProcedureGenerator.html#generateSql(liquibase.statement.StoredProcedureStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/StoredProcedureStatement.html" title="class in liquibase.statement">StoredProcedureStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>TableRowCountGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/TableRowCountGenerator.html#generateSql(liquibase.statement.core.TableRowCountStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/TableRowCountStatement.html" title="class in liquibase.statement.core">TableRowCountStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>TagDatabaseGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/TagDatabaseGenerator.html#generateSql(liquibase.statement.core.TagDatabaseStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/TagDatabaseStatement.html" title="class in liquibase.statement.core">TagDatabaseStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>UnlockDatabaseChangeLogGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/UnlockDatabaseChangeLogGenerator.html#generateSql(liquibase.statement.core.UnlockDatabaseChangeLogStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/UnlockDatabaseChangeLogStatement.html" title="class in liquibase.statement.core">UnlockDatabaseChangeLogStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>UpdateChangeSetChecksumGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/UpdateChangeSetChecksumGenerator.html#generateSql(liquibase.statement.core.UpdateChangeSetChecksumStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/UpdateChangeSetChecksumStatement.html" title="class in liquibase.statement.core">UpdateChangeSetChecksumStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>UpdateDataChangeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/UpdateDataChangeGenerator.html#generateSql(liquibase.statement.UpdateExecutablePreparedStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/UpdateExecutablePreparedStatement.html" title="class in liquibase.statement">UpdateExecutablePreparedStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>UpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/UpdateGenerator.html#generateSql(liquibase.statement.core.UpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">generateSql</A></B>(<A HREF="../../../liquibase/statement/core/UpdateStatement.html" title="class in liquibase.statement.core">UpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorSQLite.html#generateStatementsIsVolatile(liquibase.database.Database)">generateStatementsIsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractSqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AbstractSqlGenerator.html#generateStatementsIsVolatile(liquibase.database.Database)">generateStatementsIsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddColumnGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGeneratorSQLite.html#generateStatementsIsVolatile(liquibase.database.Database)">generateStatementsIsVolatile</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>InsertGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertGenerator.html#generateValues(java.lang.StringBuffer, liquibase.statement.core.InsertStatement, liquibase.database.Database)">generateValues</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/StringBuffer.html?is-external=true" title="class or interface in java.lang">StringBuffer</A>&nbsp;sql, <A HREF="../../../liquibase/statement/core/InsertStatement.html" title="class in liquibase.statement.core">InsertStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/structure/core/Relation.html" title="class in liquibase.structure.core">Relation</A></CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGeneratorSybase.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGeneratorSybase.html#getAffectedTable(liquibase.database.Database)">getAffectedTable</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/structure/core/Relation.html" title="class in liquibase.structure.core">Relation</A></CODE></FONT></TD> <TD><CODE><B>ClearDatabaseChangeLogTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ClearDatabaseChangeLogTableGenerator.html#getAffectedTable(liquibase.database.Database, java.lang.String)">getAffectedTable</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaName)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogLockTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogLockTableGenerator.html#getCharTypeName(liquibase.database.Database)">getCharTypeName</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGenerator.html#getCharTypeName(liquibase.database.Database)">getCharTypeName</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogLockTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogLockTableGenerator.html#getDateTimeTypeString(liquibase.database.Database)">getDateTimeTypeString</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGenerator.html#getDateTimeTypeString(liquibase.database.Database)">getDateTimeTypeString</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorDB2.html#getElse(liquibase.database.Database)">getElse</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorHsql.html#getElse(liquibase.database.Database)">getElse</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected abstract &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGenerator.html#getElse(liquibase.database.Database)">getElse</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorH2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorH2.html#getElse(liquibase.database.Database)">getElse</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorPostgres.html#getElse(liquibase.database.Database)">getElse</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;arg0)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorOracle.html#getElse(liquibase.database.Database)">getElse</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMySQL.html#getElse(liquibase.database.Database)">getElse</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMSSQL.html#getElse(liquibase.database.Database)">getElse</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/sqlgenerator/core/InsertGenerator.html" title="class in liquibase.sqlgenerator.core">InsertGenerator</A></CODE></FONT></TD> <TD><CODE><B>InsertSetGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertSetGenerator.html#getInsertGenerator(liquibase.database.Database)">getInsertGenerator</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorHsql.html#getInsertStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">getInsertStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGenerator.html#getInsertStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">getInsertStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorH2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorH2.html#getInsertStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">getInsertStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMySQL.html#getInsertStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">getInsertStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMSSQL.html#getInsertStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">getInsertStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>ModifyDataTypeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ModifyDataTypeGenerator.html#getModifyString(liquibase.database.Database)">getModifyString</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorDB2.html#getPostUpdateStatements(liquibase.database.Database)">getPostUpdateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGenerator.html#getPostUpdateStatements(liquibase.database.Database)">getPostUpdateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorOracle.html#getPostUpdateStatements(liquibase.database.Database)">getPostUpdateStatements</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>ModifyDataTypeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ModifyDataTypeGenerator.html#getPreDataTypeString(liquibase.database.Database)">getPreDataTypeString</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorDB2.html#getRecordCheck(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String)">getRecordCheck</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorHsql.html#getRecordCheck(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String)">getRecordCheck</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected abstract &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGenerator.html#getRecordCheck(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String)">getRecordCheck</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorH2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorH2.html#getRecordCheck(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String)">getRecordCheck</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorPostgres.html#getRecordCheck(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String)">getRecordCheck</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;arg0, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;arg1, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;arg2)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorOracle.html#getRecordCheck(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String)">getRecordCheck</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMySQL.html#getRecordCheck(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String)">getRecordCheck</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMSSQL.html#getRecordCheck(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String)">getRecordCheck</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorHsql.html#getUpdateStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String, liquibase.sqlgenerator.SqlGeneratorChain)">getUpdateStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGenerator.html#getUpdateStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String, liquibase.sqlgenerator.SqlGeneratorChain)">getUpdateStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorH2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorH2.html#getUpdateStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String, liquibase.sqlgenerator.SqlGeneratorChain)">getUpdateStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMySQL.html#getUpdateStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String, liquibase.sqlgenerator.SqlGeneratorChain)">getUpdateStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMSSQL.html#getUpdateStatement(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, java.lang.String, liquibase.sqlgenerator.SqlGeneratorChain)">getUpdateStatement</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;whereClause, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGenerator.html#getWhereClause(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database)">getWhereClause</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;insertOrUpdateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractSqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AbstractSqlGenerator.html#looksLikeFunctionCall(java.lang.String, liquibase.database.Database)">looksLikeFunctionCall</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;value, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorMySQL.html#supports(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorDB2.html#supports(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGenerator.html#supports(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorSQLite.html#supports(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorHsqlH2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorHsqlH2.html#supports(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorInformix.html#supports(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddColumnGeneratorDefaultClauseBeforeNotNull.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGeneratorDefaultClauseBeforeNotNull.html#supports(liquibase.statement.core.AddColumnStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddColumnGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGeneratorSQLite.html#supports(liquibase.statement.core.AddColumnStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorSybaseASA.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorSybaseASA.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorMSSQL.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueSQLite.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorOracle.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorSybase.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorSybase.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorMySQL.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorDerby.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorDerby.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorPostgres.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorInformix.html#supports(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddForeignKeyConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddForeignKeyConstraintGenerator.html#supports(liquibase.statement.core.AddForeignKeyConstraintStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddForeignKeyConstraintStatement.html" title="class in liquibase.statement.core">AddForeignKeyConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddPrimaryKeyGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddPrimaryKeyGenerator.html#supports(liquibase.statement.core.AddPrimaryKeyStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddPrimaryKeyStatement.html" title="class in liquibase.statement.core">AddPrimaryKeyStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddPrimaryKeyGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddPrimaryKeyGeneratorInformix.html#supports(liquibase.statement.core.AddPrimaryKeyStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddPrimaryKeyStatement.html" title="class in liquibase.statement.core">AddPrimaryKeyStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintGeneratorTDS.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddUniqueConstraintGeneratorTDS.html#supports(liquibase.statement.core.AddUniqueConstraintStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddUniqueConstraintStatement.html" title="class in liquibase.statement.core">AddUniqueConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddUniqueConstraintGenerator.html#supports(liquibase.statement.core.AddUniqueConstraintStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddUniqueConstraintStatement.html" title="class in liquibase.statement.core">AddUniqueConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddUniqueConstraintGeneratorInformix.html#supports(liquibase.statement.core.AddUniqueConstraintStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AddUniqueConstraintStatement.html" title="class in liquibase.statement.core">AddUniqueConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AlterSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AlterSequenceGenerator.html#supports(liquibase.statement.core.AlterSequenceStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/AlterSequenceStatement.html" title="class in liquibase.statement.core">AlterSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CopyRowsGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CopyRowsGenerator.html#supports(liquibase.statement.core.CopyRowsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/CopyRowsStatement.html" title="class in liquibase.statement.core">CopyRowsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGeneratorSybase.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGeneratorSybase.html#supports(liquibase.statement.core.CreateDatabaseChangeLogTableStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/CreateDatabaseChangeLogTableStatement.html" title="class in liquibase.statement.core">CreateDatabaseChangeLogTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGenerator.html#supports(liquibase.statement.core.CreateDatabaseChangeLogTableStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/CreateDatabaseChangeLogTableStatement.html" title="class in liquibase.statement.core">CreateDatabaseChangeLogTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CreateIndexGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateIndexGeneratorPostgres.html#supports(liquibase.statement.core.CreateIndexStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/CreateIndexStatement.html" title="class in liquibase.statement.core">CreateIndexStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CreateSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateSequenceGenerator.html#supports(liquibase.statement.core.CreateSequenceStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/CreateSequenceStatement.html" title="class in liquibase.statement.core">CreateSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CreateTableGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateTableGeneratorInformix.html#supports(liquibase.statement.core.CreateTableStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/CreateTableStatement.html" title="class in liquibase.statement.core">CreateTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>CreateViewGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateViewGeneratorInformix.html#supports(liquibase.statement.core.CreateViewStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/CreateViewStatement.html" title="class in liquibase.statement.core">CreateViewStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropDefaultValueGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropDefaultValueGenerator.html#supports(liquibase.statement.core.DropDefaultValueStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/DropDefaultValueStatement.html" title="class in liquibase.statement.core">DropDefaultValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropForeignKeyConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropForeignKeyConstraintGenerator.html#supports(liquibase.statement.core.DropForeignKeyConstraintStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/DropForeignKeyConstraintStatement.html" title="class in liquibase.statement.core">DropForeignKeyConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropPrimaryKeyGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropPrimaryKeyGenerator.html#supports(liquibase.statement.core.DropPrimaryKeyStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/DropPrimaryKeyStatement.html" title="class in liquibase.statement.core">DropPrimaryKeyStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropSequenceGenerator.html#supports(liquibase.statement.core.DropSequenceStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/DropSequenceStatement.html" title="class in liquibase.statement.core">DropSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>DropUniqueConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropUniqueConstraintGenerator.html#supports(liquibase.statement.core.DropUniqueConstraintStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/DropUniqueConstraintStatement.html" title="class in liquibase.statement.core">DropUniqueConstraintStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorMSSQL.html#supports(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorDerby.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorDerby.html#supports(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorHsql.html#supports(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorOracle.html#supports(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorMySQL.html#supports(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorFirebird.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorFirebird.html#supports(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorDB2.html#supports(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorPostgres.html#supports(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorDB2.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorHsql.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorOracle.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorInformix.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorPostgres.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorSybaseASA.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorSybaseASA.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorFirebird.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorFirebird.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorMSSQL.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorSybase.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorSybase.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGeneratorDerby.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGeneratorDerby.html#supports(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorDB2.html#supports(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorHsql.html#supports(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorH2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorH2.html#supports(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorPostgres.html#supports(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorOracle.html#supports(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMySQL.html#supports(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGeneratorMSSQL.html#supports(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ModifyDataTypeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ModifyDataTypeGenerator.html#supports(liquibase.statement.core.ModifyDataTypeStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/ModifyDataTypeStatement.html" title="class in liquibase.statement.core">ModifyDataTypeStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ReindexGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ReindexGeneratorSQLite.html#supports(liquibase.statement.core.ReindexStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/ReindexStatement.html" title="class in liquibase.statement.core">ReindexStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>RenameColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameColumnGenerator.html#supports(liquibase.statement.core.RenameColumnStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/RenameColumnStatement.html" title="class in liquibase.statement.core">RenameColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>RenameSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameSequenceGenerator.html#supports(liquibase.statement.core.RenameSequenceStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/RenameSequenceStatement.html" title="class in liquibase.statement.core">RenameSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>RenameTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameTableGenerator.html#supports(liquibase.statement.core.RenameTableStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/RenameTableStatement.html" title="class in liquibase.statement.core">RenameTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>RenameViewGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameViewGenerator.html#supports(liquibase.statement.core.RenameViewStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/RenameViewStatement.html" title="class in liquibase.statement.core">RenameViewStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>ReorganizeTableGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ReorganizeTableGeneratorDB2.html#supports(liquibase.statement.core.ReorganizeTableStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/ReorganizeTableStatement.html" title="class in liquibase.statement.core">ReorganizeTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SetColumnRemarksGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetColumnRemarksGenerator.html#supports(liquibase.statement.core.SetColumnRemarksStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/SetColumnRemarksStatement.html" title="class in liquibase.statement.core">SetColumnRemarksStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SetNullableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetNullableGenerator.html#supports(liquibase.statement.core.SetNullableStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/SetNullableStatement.html" title="class in liquibase.statement.core">SetNullableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SetTableRemarksGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetTableRemarksGenerator.html#supports(liquibase.statement.core.SetTableRemarksStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/SetTableRemarksStatement.html" title="class in liquibase.statement.core">SetTableRemarksStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>AbstractSqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AbstractSqlGenerator.html#supports(StatementType, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/sqlgenerator/core/AbstractSqlGenerator.html" title="type parameter in AbstractSqlGenerator">StatementType</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>TableRowCountGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/TableRowCountGenerator.html#supports(liquibase.statement.core.TableRowCountStatement, liquibase.database.Database)">supports</A></B>(<A HREF="../../../liquibase/statement/core/TableRowCountStatement.html" title="class in liquibase.statement.core">TableRowCountStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>CreateProcedureGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateProcedureGenerator.html#surroundWithSchemaSets(java.util.List, java.lang.String, liquibase.database.Database)">surroundWithSchemaSets</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>&gt;&nbsp;sql, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaName, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Convenience method for when the schemaName is set but we don't want to parse the body</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorDB2.html#validate(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGenerator.html#validate(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorSQLite.html#validate(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddAutoIncrementGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddAutoIncrementGeneratorInformix.html#validate(liquibase.statement.core.AddAutoIncrementStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddAutoIncrementStatement.html" title="class in liquibase.statement.core">AddAutoIncrementStatement</A>&nbsp;addAutoIncrementStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddColumnGeneratorDefaultClauseBeforeNotNull.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGeneratorDefaultClauseBeforeNotNull.html#validate(liquibase.statement.core.AddColumnStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddColumnGenerator.html#validate(liquibase.statement.core.AddColumnStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddColumnStatement.html" title="class in liquibase.statement.core">AddColumnStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGenerator.html#validate(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;addDefaultValueStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddDefaultValueGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddDefaultValueGeneratorInformix.html#validate(liquibase.statement.core.AddDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddDefaultValueStatement.html" title="class in liquibase.statement.core">AddDefaultValueStatement</A>&nbsp;addDefaultValueStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddForeignKeyConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddForeignKeyConstraintGenerator.html#validate(liquibase.statement.core.AddForeignKeyConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddForeignKeyConstraintStatement.html" title="class in liquibase.statement.core">AddForeignKeyConstraintStatement</A>&nbsp;addForeignKeyConstraintStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddPrimaryKeyGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddPrimaryKeyGenerator.html#validate(liquibase.statement.core.AddPrimaryKeyStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddPrimaryKeyStatement.html" title="class in liquibase.statement.core">AddPrimaryKeyStatement</A>&nbsp;addPrimaryKeyStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AddUniqueConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AddUniqueConstraintGenerator.html#validate(liquibase.statement.core.AddUniqueConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AddUniqueConstraintStatement.html" title="class in liquibase.statement.core">AddUniqueConstraintStatement</A>&nbsp;addUniqueConstraintStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>AlterSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AlterSequenceGenerator.html#validate(liquibase.statement.core.AlterSequenceStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/AlterSequenceStatement.html" title="class in liquibase.statement.core">AlterSequenceStatement</A>&nbsp;alterSequenceStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ClearDatabaseChangeLogTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ClearDatabaseChangeLogTableGenerator.html#validate(liquibase.statement.core.ClearDatabaseChangeLogTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/ClearDatabaseChangeLogTableStatement.html" title="class in liquibase.statement.core">ClearDatabaseChangeLogTableStatement</A>&nbsp;clearDatabaseChangeLogTableStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CommentGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CommentGenerator.html#validate(liquibase.statement.core.CommentStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CommentStatement.html" title="class in liquibase.statement.core">CommentStatement</A>&nbsp;comment, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CopyRowsGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CopyRowsGenerator.html#validate(liquibase.statement.core.CopyRowsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CopyRowsStatement.html" title="class in liquibase.statement.core">CopyRowsStatement</A>&nbsp;copyRowsStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogLockTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogLockTableGenerator.html#validate(liquibase.statement.core.CreateDatabaseChangeLogLockTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateDatabaseChangeLogLockTableStatement.html" title="class in liquibase.statement.core">CreateDatabaseChangeLogLockTableStatement</A>&nbsp;createDatabaseChangeLogLockTableStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGeneratorSybase.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGeneratorSybase.html#validate(liquibase.statement.core.CreateDatabaseChangeLogTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateDatabaseChangeLogTableStatement.html" title="class in liquibase.statement.core">CreateDatabaseChangeLogTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateDatabaseChangeLogTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateDatabaseChangeLogTableGenerator.html#validate(liquibase.statement.core.CreateDatabaseChangeLogTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateDatabaseChangeLogTableStatement.html" title="class in liquibase.statement.core">CreateDatabaseChangeLogTableStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateIndexGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateIndexGenerator.html#validate(liquibase.statement.core.CreateIndexStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateIndexStatement.html" title="class in liquibase.statement.core">CreateIndexStatement</A>&nbsp;createIndexStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateProcedureGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateProcedureGenerator.html#validate(liquibase.statement.core.CreateProcedureStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateProcedureStatement.html" title="class in liquibase.statement.core">CreateProcedureStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateSequenceGenerator.html#validate(liquibase.statement.core.CreateSequenceStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateSequenceStatement.html" title="class in liquibase.statement.core">CreateSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateTableGenerator.html#validate(liquibase.statement.core.CreateTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateTableStatement.html" title="class in liquibase.statement.core">CreateTableStatement</A>&nbsp;createTableStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateViewGeneratorInformix.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateViewGeneratorInformix.html#validate(liquibase.statement.core.CreateViewStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateViewStatement.html" title="class in liquibase.statement.core">CreateViewStatement</A>&nbsp;createViewStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>CreateViewGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateViewGenerator.html#validate(liquibase.statement.core.CreateViewStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/CreateViewStatement.html" title="class in liquibase.statement.core">CreateViewStatement</A>&nbsp;createViewStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DeleteGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DeleteGenerator.html#validate(liquibase.statement.core.DeleteStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DeleteStatement.html" title="class in liquibase.statement.core">DeleteStatement</A>&nbsp;deleteStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropColumnGenerator.html#validate(liquibase.statement.core.DropColumnStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropColumnStatement.html" title="class in liquibase.statement.core">DropColumnStatement</A>&nbsp;dropColumnStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropDefaultValueGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropDefaultValueGenerator.html#validate(liquibase.statement.core.DropDefaultValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropDefaultValueStatement.html" title="class in liquibase.statement.core">DropDefaultValueStatement</A>&nbsp;dropDefaultValueStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropForeignKeyConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropForeignKeyConstraintGenerator.html#validate(liquibase.statement.core.DropForeignKeyConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropForeignKeyConstraintStatement.html" title="class in liquibase.statement.core">DropForeignKeyConstraintStatement</A>&nbsp;dropForeignKeyConstraintStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropIndexGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropIndexGenerator.html#validate(liquibase.statement.core.DropIndexStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropIndexStatement.html" title="class in liquibase.statement.core">DropIndexStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropPrimaryKeyGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropPrimaryKeyGenerator.html#validate(liquibase.statement.core.DropPrimaryKeyStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropPrimaryKeyStatement.html" title="class in liquibase.statement.core">DropPrimaryKeyStatement</A>&nbsp;dropPrimaryKeyStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropProcedureGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropProcedureGenerator.html#validate(liquibase.statement.core.DropProcedureStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropProcedureStatement.html" title="class in liquibase.statement.core">DropProcedureStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropSequenceGenerator.html#validate(liquibase.statement.core.DropSequenceStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropSequenceStatement.html" title="class in liquibase.statement.core">DropSequenceStatement</A>&nbsp;dropSequenceStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropTableGenerator.html#validate(liquibase.statement.core.DropTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropTableStatement.html" title="class in liquibase.statement.core">DropTableStatement</A>&nbsp;dropTableStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropUniqueConstraintGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropUniqueConstraintGenerator.html#validate(liquibase.statement.core.DropUniqueConstraintStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropUniqueConstraintStatement.html" title="class in liquibase.statement.core">DropUniqueConstraintStatement</A>&nbsp;dropUniqueConstraintStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>DropViewGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/DropViewGenerator.html#validate(liquibase.statement.core.DropViewStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/DropViewStatement.html" title="class in liquibase.statement.core">DropViewStatement</A>&nbsp;dropViewStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorMSSQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorMSSQL.html#validate(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;findForeignKeyConstraintsStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorDerby.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorDerby.html#validate(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;findForeignKeyConstraintsStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorHsql.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorHsql.html#validate(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorOracle.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorOracle.html#validate(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;findForeignKeyConstraintsStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorMySQL.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorMySQL.html#validate(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;findForeignKeyConstraintsStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorFirebird.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorFirebird.html#validate(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;findForeignKeyConstraintsStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorDB2.html#validate(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;findForeignKeyConstraintsStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>FindForeignKeyConstraintsGeneratorPostgres.</B><B><A HREF="../../../liquibase/sqlgenerator/core/FindForeignKeyConstraintsGeneratorPostgres.html#validate(liquibase.statement.core.FindForeignKeyConstraintsStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/FindForeignKeyConstraintsStatement.html" title="class in liquibase.statement.core">FindForeignKeyConstraintsStatement</A>&nbsp;findForeignKeyConstraintsStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>GetNextChangeSetSequenceValueGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetNextChangeSetSequenceValueGenerator.html#validate(liquibase.statement.core.GetNextChangeSetSequenceValueStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/GetNextChangeSetSequenceValueStatement.html" title="class in liquibase.statement.core">GetNextChangeSetSequenceValueStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>GetViewDefinitionGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/GetViewDefinitionGenerator.html#validate(liquibase.statement.core.GetViewDefinitionStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/GetViewDefinitionStatement.html" title="class in liquibase.statement.core">GetViewDefinitionStatement</A>&nbsp;getViewDefinitionStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>InitializeDatabaseChangeLogLockTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InitializeDatabaseChangeLogLockTableGenerator.html#validate(liquibase.statement.core.InitializeDatabaseChangeLogLockTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/InitializeDatabaseChangeLogLockTableStatement.html" title="class in liquibase.statement.core">InitializeDatabaseChangeLogLockTableStatement</A>&nbsp;initializeDatabaseChangeLogLockTableStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>InsertDataChangeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertDataChangeGenerator.html#validate(liquibase.statement.InsertExecutablePreparedStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/InsertExecutablePreparedStatement.html" title="class in liquibase.statement">InsertExecutablePreparedStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>InsertOrUpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertOrUpdateGenerator.html#validate(liquibase.statement.core.InsertOrUpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/InsertOrUpdateStatement.html" title="class in liquibase.statement.core">InsertOrUpdateStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>InsertSetGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertSetGenerator.html#validate(liquibase.statement.core.InsertSetStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/InsertSetStatement.html" title="class in liquibase.statement.core">InsertSetStatement</A>&nbsp;insertStatementSet, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>InsertGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/InsertGenerator.html#validate(liquibase.statement.core.InsertStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/InsertStatement.html" title="class in liquibase.statement.core">InsertStatement</A>&nbsp;insertStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>LockDatabaseChangeLogGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/LockDatabaseChangeLogGenerator.html#validate(liquibase.statement.core.LockDatabaseChangeLogStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/LockDatabaseChangeLogStatement.html" title="class in liquibase.statement.core">LockDatabaseChangeLogStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>MarkChangeSetRanGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/MarkChangeSetRanGenerator.html#validate(liquibase.statement.core.MarkChangeSetRanStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/MarkChangeSetRanStatement.html" title="class in liquibase.statement.core">MarkChangeSetRanStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ModifyDataTypeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ModifyDataTypeGenerator.html#validate(liquibase.statement.core.ModifyDataTypeStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/ModifyDataTypeStatement.html" title="class in liquibase.statement.core">ModifyDataTypeStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RawSqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RawSqlGenerator.html#validate(liquibase.statement.core.RawSqlStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/RawSqlStatement.html" title="class in liquibase.statement.core">RawSqlStatement</A>&nbsp;rawSqlStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ReindexGeneratorSQLite.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ReindexGeneratorSQLite.html#validate(liquibase.statement.core.ReindexStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/ReindexStatement.html" title="class in liquibase.statement.core">ReindexStatement</A>&nbsp;reindexStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RemoveChangeSetRanStatusGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RemoveChangeSetRanStatusGenerator.html#validate(liquibase.statement.core.RemoveChangeSetRanStatusStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/RemoveChangeSetRanStatusStatement.html" title="class in liquibase.statement.core">RemoveChangeSetRanStatusStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RenameColumnGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameColumnGenerator.html#validate(liquibase.statement.core.RenameColumnStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/RenameColumnStatement.html" title="class in liquibase.statement.core">RenameColumnStatement</A>&nbsp;renameColumnStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RenameSequenceGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameSequenceGenerator.html#validate(liquibase.statement.core.RenameSequenceStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/RenameSequenceStatement.html" title="class in liquibase.statement.core">RenameSequenceStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RenameTableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameTableGenerator.html#validate(liquibase.statement.core.RenameTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/RenameTableStatement.html" title="class in liquibase.statement.core">RenameTableStatement</A>&nbsp;renameTableStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RenameViewGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RenameViewGenerator.html#validate(liquibase.statement.core.RenameViewStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/RenameViewStatement.html" title="class in liquibase.statement.core">RenameViewStatement</A>&nbsp;renameViewStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>ReorganizeTableGeneratorDB2.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ReorganizeTableGeneratorDB2.html#validate(liquibase.statement.core.ReorganizeTableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/ReorganizeTableStatement.html" title="class in liquibase.statement.core">ReorganizeTableStatement</A>&nbsp;reorganizeTableStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>RuntimeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/RuntimeGenerator.html#validate(liquibase.statement.core.RuntimeStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/RuntimeStatement.html" title="class in liquibase.statement.core">RuntimeStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SelectFromDatabaseChangeLogLockGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SelectFromDatabaseChangeLogLockGenerator.html#validate(liquibase.statement.core.SelectFromDatabaseChangeLogLockStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/SelectFromDatabaseChangeLogLockStatement.html" title="class in liquibase.statement.core">SelectFromDatabaseChangeLogLockStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SelectFromDatabaseChangeLogGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SelectFromDatabaseChangeLogGenerator.html#validate(liquibase.statement.core.SelectFromDatabaseChangeLogStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/SelectFromDatabaseChangeLogStatement.html" title="class in liquibase.statement.core">SelectFromDatabaseChangeLogStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SetColumnRemarksGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetColumnRemarksGenerator.html#validate(liquibase.statement.core.SetColumnRemarksStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/SetColumnRemarksStatement.html" title="class in liquibase.statement.core">SetColumnRemarksStatement</A>&nbsp;setColumnRemarksStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SetNullableGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetNullableGenerator.html#validate(liquibase.statement.core.SetNullableStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/SetNullableStatement.html" title="class in liquibase.statement.core">SetNullableStatement</A>&nbsp;setNullableStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>SetTableRemarksGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/SetTableRemarksGenerator.html#validate(liquibase.statement.core.SetTableRemarksStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/SetTableRemarksStatement.html" title="class in liquibase.statement.core">SetTableRemarksStatement</A>&nbsp;setTableRemarksStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>StoredProcedureGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/StoredProcedureGenerator.html#validate(liquibase.statement.StoredProcedureStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/StoredProcedureStatement.html" title="class in liquibase.statement">StoredProcedureStatement</A>&nbsp;storedProcedureStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>TableRowCountGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/TableRowCountGenerator.html#validate(liquibase.statement.core.TableRowCountStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/TableRowCountStatement.html" title="class in liquibase.statement.core">TableRowCountStatement</A>&nbsp;dropColumnStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>TagDatabaseGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/TagDatabaseGenerator.html#validate(liquibase.statement.core.TagDatabaseStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/TagDatabaseStatement.html" title="class in liquibase.statement.core">TagDatabaseStatement</A>&nbsp;tagDatabaseStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>UnlockDatabaseChangeLogGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/UnlockDatabaseChangeLogGenerator.html#validate(liquibase.statement.core.UnlockDatabaseChangeLogStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/UnlockDatabaseChangeLogStatement.html" title="class in liquibase.statement.core">UnlockDatabaseChangeLogStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>UpdateChangeSetChecksumGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/UpdateChangeSetChecksumGenerator.html#validate(liquibase.statement.core.UpdateChangeSetChecksumStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/UpdateChangeSetChecksumStatement.html" title="class in liquibase.statement.core">UpdateChangeSetChecksumStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>UpdateDataChangeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/UpdateDataChangeGenerator.html#validate(liquibase.statement.UpdateExecutablePreparedStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/UpdateExecutablePreparedStatement.html" title="class in liquibase.statement">UpdateExecutablePreparedStatement</A>&nbsp;statement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/ValidationErrors.html" title="class in liquibase.exception">ValidationErrors</A></CODE></FONT></TD> <TD><CODE><B>UpdateGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/UpdateGenerator.html#validate(liquibase.statement.core.UpdateStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">validate</A></B>(<A HREF="../../../liquibase/statement/core/UpdateStatement.html" title="class in liquibase.statement.core">UpdateStatement</A>&nbsp;updateStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>CreateIndexGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/CreateIndexGenerator.html#warn(liquibase.statement.core.CreateIndexStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">warn</A></B>(<A HREF="../../../liquibase/statement/core/CreateIndexStatement.html" title="class in liquibase.statement.core">CreateIndexStatement</A>&nbsp;createIndexStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>ModifyDataTypeGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/ModifyDataTypeGenerator.html#warn(liquibase.statement.core.ModifyDataTypeStatement, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">warn</A></B>(<A HREF="../../../liquibase/statement/core/ModifyDataTypeStatement.html" title="class in liquibase.statement.core">ModifyDataTypeStatement</A>&nbsp;modifyDataTypeStatement, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</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="../../../liquibase/exception/Warnings.html" title="class in liquibase.exception">Warnings</A></CODE></FONT></TD> <TD><CODE><B>AbstractSqlGenerator.</B><B><A HREF="../../../liquibase/sqlgenerator/core/AbstractSqlGenerator.html#warn(StatementType, liquibase.database.Database, liquibase.sqlgenerator.SqlGeneratorChain)">warn</A></B>(<A HREF="../../../liquibase/sqlgenerator/core/AbstractSqlGenerator.html" title="type parameter in AbstractSqlGenerator">StatementType</A>&nbsp;statementType, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="../../../liquibase/sqlgenerator/SqlGeneratorChain.html" title="class in liquibase.sqlgenerator">SqlGeneratorChain</A>&nbsp;sqlGeneratorChain)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.statement"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/statement/package-summary.html">liquibase.statement</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">Fields in <A HREF="../../../liquibase/statement/package-summary.html">liquibase.statement</A> declared as <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></CODE></FONT></TD> <TD><CODE><B>ExecutablePreparedStatementBase.</B><B><A HREF="../../../liquibase/statement/ExecutablePreparedStatementBase.html#database">database</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">Constructors in <A HREF="../../../liquibase/statement/package-summary.html">liquibase.statement</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/statement/ExecutablePreparedStatementBase.html#ExecutablePreparedStatementBase(liquibase.database.Database, java.lang.String, java.lang.String, java.lang.String, java.util.List, liquibase.changelog.ChangeSet, liquibase.resource.ResourceAccessor)">ExecutablePreparedStatementBase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;catalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;tableName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/ColumnConfig.html" title="class in liquibase.change">ColumnConfig</A>&gt;&nbsp;columns, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/statement/InsertExecutablePreparedStatement.html#InsertExecutablePreparedStatement(liquibase.database.Database, java.lang.String, java.lang.String, java.lang.String, java.util.List, liquibase.changelog.ChangeSet, liquibase.resource.ResourceAccessor)">InsertExecutablePreparedStatement</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;catalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;tableName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/ColumnConfig.html" title="class in liquibase.change">ColumnConfig</A>&gt;&nbsp;columns, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/statement/UpdateExecutablePreparedStatement.html#UpdateExecutablePreparedStatement(liquibase.database.Database, java.lang.String, java.lang.String, java.lang.String, java.util.List, liquibase.changelog.ChangeSet, liquibase.resource.ResourceAccessor)">UpdateExecutablePreparedStatement</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;catalogName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;schemaName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;tableName, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../liquibase/change/ColumnConfig.html" title="class in liquibase.change">ColumnConfig</A>&gt;&nbsp;columns, <A HREF="../../../liquibase/changelog/ChangeSet.html" title="class in liquibase.changelog">ChangeSet</A>&nbsp;changeSet, <A HREF="../../../liquibase/resource/ResourceAccessor.html" title="interface in liquibase.resource">ResourceAccessor</A>&nbsp;resourceAccessor)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.statement.core"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/statement/core/package-summary.html">liquibase.statement.core</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="../../../liquibase/statement/core/package-summary.html">liquibase.statement.core</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../liquibase/sql/Sql.html" title="interface in liquibase.sql">Sql</A>[]</CODE></FONT></TD> <TD><CODE><B>RuntimeStatement.</B><B><A HREF="../../../liquibase/statement/core/RuntimeStatement.html#generate(liquibase.database.Database)">generate</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.structure"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/structure/package-summary.html">liquibase.structure</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="../../../liquibase/structure/package-summary.html">liquibase.structure</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../liquibase/structure/DatabaseObjectCollection.html#DatabaseObjectCollection(liquibase.database.Database)">DatabaseObjectCollection</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/util/package-summary.html">liquibase.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="../../../liquibase/util/package-summary.html">liquibase.util</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>JdbcUtils.</B><B><A HREF="../../../liquibase/util/JdbcUtils.html#getValueForColumn(java.sql.ResultSet, java.lang.String, liquibase.database.Database)">getValueForColumn</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/sql/ResultSet.html?is-external=true" title="class or interface in java.sql">ResultSet</A>&nbsp;rs, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;columnNameToCheck, <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Checks whether a result set has a column matching the specified column name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B>SqlUtil.</B><B><A HREF="../../../liquibase/util/SqlUtil.html#parseValue(liquibase.database.Database, java.lang.Object, liquibase.structure.core.DataType)">parseValue</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;val, <A HREF="../../../liquibase/structure/core/DataType.html" title="class in liquibase.structure.core">DataType</A>&nbsp;type)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B>SqlUtil.</B><B><A HREF="../../../liquibase/util/SqlUtil.html#replacePredicatePlaceholders(liquibase.database.Database, java.lang.String, java.util.List, java.util.List)">replacePredicatePlaceholders</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;predicate, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&gt;&nbsp;columnNames, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&gt;&nbsp;parameters)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="liquibase.util.ui"><!-- --></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="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A> in <A HREF="../../../liquibase/util/ui/package-summary.html">liquibase.util.ui</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="../../../liquibase/util/ui/package-summary.html">liquibase.util.ui</A> with parameters of type <A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>UIFacade.</B><B><A HREF="../../../liquibase/util/ui/UIFacade.html#promptForNonLocalDatabase(liquibase.database.Database)">promptForNonLocalDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</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;boolean</CODE></FONT></TD> <TD><CODE><B>SwingUIFacade.</B><B><A HREF="../../../liquibase/util/ui/SwingUIFacade.html#promptForNonLocalDatabase(liquibase.database.Database)">promptForNonLocalDatabase</A></B>(<A HREF="../../../liquibase/database/Database.html" title="interface in liquibase.database">Database</A>&nbsp;database)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Displays swing-based dialog about running against a non-localhost database.</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="../../../liquibase/database/Database.html" title="interface in liquibase.database"><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="../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#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?liquibase/database//class-useDatabase.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Database.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; 2016 <a href="http://www.liquibase.org">Liquibase.org</a>. All rights reserved. </BODY> </HTML>
{ "content_hash": "2fb547cd38f0f75f4e8d1961f17f88aa", "timestamp": "", "source": "github", "line_count": 10285, "max_line_length": 724, "avg_line_length": 89.19834710743801, "alnum_prop": 0.7134951302859697, "repo_name": "myapos/ClientManagerSpringBoot", "id": "0bfcc87c493ba675b0623dc832c4a60061eb4710", "size": "917405", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "database_schemas/liquibase-3.5.3-bin/sdk/javadoc/liquibase/database/class-use/Database.html", "mode": "33261", "license": "mit", "language": [ { "name": "Batchfile", "bytes": "7142" }, { "name": "CSS", "bytes": "28980" }, { "name": "HTML", "bytes": "23194" }, { "name": "Java", "bytes": "83010" }, { "name": "JavaScript", "bytes": "854753" }, { "name": "Shell", "bytes": "2956" } ], "symlink_target": "" }
package net.linkedbuildingdata.common.collections; import java.util.Map.Entry; public class Pair<K, V> implements Entry<K, V> { private K key; private V value; public Pair(K key, V value) { this.key = key; this.value = value; } public Pair(Entry<K, V> entry) { this.key = entry.getKey(); this.value = entry.getValue(); } @Override public K getKey() { return key; } @Override public V getValue() { return value; } @Override public V setValue(V value) { V oldValue = this.value; this.value = value; return oldValue; } @Override public int hashCode() { return key.hashCode() ^ value.hashCode(); } @Override public boolean equals(Object obj) { @SuppressWarnings("unchecked") Pair<K,V> o = (Pair<K,V>)obj; return key.equals(o.key) && value.equals(o.value); } }
{ "content_hash": "5df0b53d54da887fcd8d8b9ea85cf4dc", "timestamp": "", "source": "github", "line_count": 49, "max_line_length": 52, "avg_line_length": 17.714285714285715, "alnum_prop": 0.619815668202765, "repo_name": "Web-of-Building-Data/Ifc2Rdf", "id": "5052a2113de098c8b035e6d2cfa1a5d5d86b5a65", "size": "868", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "software/drumbeat-ifc2rdf-1.4.0/net.linkedbuildingdata.common/src/net/linkedbuildingdata/common/collections/Pair.java", "mode": "33188", "license": "mit", "language": [ { "name": "Batchfile", "bytes": "14727" }, { "name": "Java", "bytes": "1405679" }, { "name": "Shell", "bytes": "11410" } ], "symlink_target": "" }
require 'open-uri' require 'active_record' class WeatherChina def initialize(city_id, options={}) @city_id = city_id @options = options end def refresh # http://www.weather.com.cn/data/sk/101010100.html @current = parse_json(open("http://www.weather.com.cn/data/sk/#{@city_id}.html").read)["weatherinfo"] rescue {} # http://m.weather.com.cn/data/101010100.html # interface changed to: http://m.weather.com.cn/atad/101010100.html @forecast = parse_json(open("http://m.weather.com.cn/atad/#{@city_id}.html").read)["weatherinfo"] rescue {} end def current refresh unless (@current and @forecast) { condition: @forecast.fetch('weather1', nil), temp: @current.fetch('temp', nil), humidity: @current.fetch('SD', nil), icon: wrap_icon(@forecast.fetch('img_single', nil)), icon_code: @forecast.fetch('img_single', nil), wind: "#{@current.fetch('WD')}#{@current.fetch('WS')}", time: @current.fetch('time', nil) } unless (@current.empty? or @forecast.empty?) end def forecast forecasts = [] (1..6).each do |i| temp = @forecast.fetch("temp#{i}", '') temps = temp.split '~' forecasts << { index: i, condition: @forecast.fetch("weather#{i}", nil), wind: @forecast.fetch("wind#{i}", nil), icon_1: wrap_icon(@forecast.fetch("img#{i * 2 - 1}", nil)), icon_code_1: @forecast.fetch("img#{i * 2 - 1}", nil), icon_2: wrap_icon(@forecast.fetch("img#{i * 2}", nil)), icon_code_2: @forecast.fetch("img#{i * 2}", nil), icon_title_1: @forecast.fetch("img_title#{i * 2 - 1}", nil), icon_title_2: @forecast.fetch("img#{i * 2}", nil) === '99' ? nil : @forecast.fetch("img_title#{i * 2}", nil), temp: temp, temp_high: temps.empty? ? '' : temps[0], temp_low: temps.empty? ? '' : temps[1] } end unless @forecast.empty? forecasts end private def parse_json(data) ActiveSupport::JSON.decode(data) end def wrap_icon(icon_string) "http://m.weather.com.cn/img/b#{icon_string}.gif" unless icon_string === '99' end end
{ "content_hash": "b699e3b2511f56560714627d1cb1fad2", "timestamp": "", "source": "github", "line_count": 64, "max_line_length": 117, "avg_line_length": 33.453125, "alnum_prop": 0.5894441849602989, "repo_name": "pzgz/weather_china", "id": "366b26d0ed391103788400056d331968cff09cb6", "size": "2168", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "lib/weather_china.rb", "mode": "33188", "license": "mit", "language": [ { "name": "Ruby", "bytes": "3229" } ], "symlink_target": "" }
using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Runtime.InteropServices; namespace Gouda.Api { /// <summary> /// A simple stdio handler for interation with the console. /// </summary> public class ConsoleStdioHandler : GhostscriptStdioHandlerBase { protected override int StdInHandler(IntPtr handle, IntPtr str, int count) { char[] buffer = new char[count]; Console.In.ReadBlock(buffer, 0, count); str = Marshal.StringToHGlobalAnsi(new string(buffer)); return buffer.Length; } protected override int StdOutHandler(IntPtr handle, IntPtr str, int count) { string foo = Marshal.PtrToStringAnsi(str, count); Console.Out.Write(foo); return count; } protected override int StdErrHandler(IntPtr handle, IntPtr str, int count) { string foo = Marshal.PtrToStringAnsi(str, count); Console.Error.Write(foo); return count; } } }
{ "content_hash": "a05ca5cfb0daefec6927c949246fafcc", "timestamp": "", "source": "github", "line_count": 39, "max_line_length": 82, "avg_line_length": 29.53846153846154, "alnum_prop": 0.5833333333333334, "repo_name": "thoward/gouda", "id": "ee3c3829aa9484433da1d0242b7ab4da60970b0c", "size": "1152", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Gouda/ConsoleStdioHandler.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C", "bytes": "27976" }, { "name": "C#", "bytes": "73182" } ], "symlink_target": "" }
#ifndef _BspNode_H__ #define _BspNode_H__ #include "OgreBspPrerequisites.h" #include "OgrePlane.h" #include "OgreAxisAlignedBox.h" #include "OgreSceneQuery.h" namespace Ogre { /** Encapsulates a node in a BSP tree. A BSP tree represents space partitioned by planes . The space which is partitioned is either the world (in the case of the root node) or the space derived from their parent node. Each node can have elements which are in front or behind it, which are it's children and these elements can either be further subdivided by planes, or they can be undivided spaces or 'leaf nodes' - these are the nodes which actually contain objects and world geometry.The leaves of the tree are the stopping point of any tree walking algorithm, both for rendering and collision detection etc. Ogre chooses not to represent splitting nodes and leaves as separate structures, but to merge the two for simplicity of the walking algorithm. If a node is a leaf, the isLeaf() method returns true and both getFront() and getBack() return null pointers. If the node is a partitioning plane isLeaf() returns false and getFront() and getBack() will return the corresponding BspNode objects. */ class BspNode : public NodeAlloc { friend class BspLevel; public: /** Constructor, only to be used by BspLevel. */ BspNode(BspLevel* owner, bool isLeaf); BspNode(); ~BspNode(); /** Returns true if this node is a leaf (i.e. contains geometry) or false if it is a splitting plane. A BspNode can either be a splitting plane (the typical representation of a BSP node) or an undivided region contining geometry (a leaf node). Ogre represents both using the same class for simplicity of tree walking. However it is important that you use this method to determine which type you are dealing with, since certain methods are only supported with one of the subtypes. Details are given in the individual methods. Note that I could have represented splitting / leaf nodes as a class hierarchy but the virtual methods / run-time type identification would have a performance hit, and it would not make the code much (any?) simpler anyway. I think this is a fair trade-off in this case. */ bool isLeaf(void) const; /** Returns a pointer to a BspNode containing the subspace on the positive side of the splitting plane. This method should only be called on a splitting node, i.e. where isLeaf() returns false. Calling this method on a leaf node will throw an exception. */ BspNode* getFront(void) const; /** Returns a pointer to a BspNode containing the subspace on the negative side of the splitting plane. This method should only be called on a splitting node, i.e. where isLeaf() returns false. Calling this method on a leaf node will throw an exception. */ BspNode* getBack(void) const; /** Determines which side of the splitting plane a worldspace point is. This method should only be called on a splitting node, i.e. where isLeaf() returns false. Calling this method on a leaf node will throw an exception. */ Plane::Side getSide (const Vector3& point) const; /** Gets the next node down in the tree, with the intention of locating the leaf containing the given point. This method should only be called on a splitting node, i.e. where isLeaf() returns false. Calling this method on a leaf node will throw an exception. */ BspNode* getNextNode(const Vector3& point) const; /** Returns details of the plane which is used to subdivide the space of his node's children. This method should only be called on a splitting node, i.e. where isLeaf() returns false. Calling this method on a leaf node will throw an exception. */ const Plane& getSplitPlane(void) const; /** Returns the axis-aligned box which contains this node if it is a leaf. This method should only be called on a leaf node. It returns a box which can be used in calls like Camera::isVisible to determine if the leaf node is visible in the view. */ const AxisAlignedBox& getBoundingBox(void) const; /** Returns the number of faces contained in this leaf node. Should only be called on a leaf node. */ int getNumFaceGroups(void) const; /** Returns the index to the face group index list for this leaf node. The contents of this buffer is a list of indexes which point to the actual face groups held in a central buffer in the BspLevel class (in actual fact for efficiency the indexes themselves are also held in a single buffer in BspLevel too). The reason for this indirection is that the buffer of indexes to face groups is organised in chunks relative to nodes, whilst the main buffer of face groups may not be. Should only be called on a leaf node. */ int getFaceGroupStart(void) const; /** Determines if the passed in node (must also be a leaf) is visible from this leaf. Must only be called on a leaf node, and the parameter must also be a leaf node. If this method returns true, then the leaf passed in is visible from this leaf. Note that internally this uses the Potentially Visible Set (PVS) which is precalculated and stored with the BSP level. */ bool isLeafVisible(const BspNode* leaf) const; friend std::ostream& operator<< (std::ostream& o, BspNode& n); /// Internal method for telling the node that a movable intersects it void _addMovable(const MovableObject* mov); /// Internal method for telling the node that a movable no longer intersects it void _removeMovable(const MovableObject* mov); /// Gets the signed distance to the dividing plane Real getDistance(const Vector3& pos) const; typedef set<const MovableObject*>::type IntersectingObjectSet; struct Brush { list<Plane>::type planes; SceneQuery::WorldFragment fragment; /// For query reporting }; typedef vector<Brush*>::type NodeBrushList; /// Main brush memory held on level /** Get the list of solid Brushes for this node. @remarks Only applicable for leaf nodes. */ const NodeBrushList& getSolidBrushes(void) const; protected: BspLevel* mOwner; /// Back-reference to containing level bool mIsLeaf; // Node-only members /** The plane which splits space in a non-leaf node. Note that nodes do not allocate the memory for other nodes - for simplicity and bulk-allocation of memory the BspLevel is responsible for assigning enough memory for all nodes in one go. */ Plane mSplitPlane; /** Pointer to the node in front of this non-leaf node. */ BspNode* mFront; /** Pointer to the node behind this non-leaf node. */ BspNode* mBack; // Leaf-only members /** The cluster number of this leaf. Leaf nodes are assigned to 'clusters' of nodes, which are used to group nodes together for visibility testing. There is a lookup table which is used to determine if one cluster of leaves is visible from another cluster. Whilst it would be possible to expand all this out so that each node had a list of pointers to other visible nodes, this would be very expensive in terms of storage (using the cluster method there is a table which is 1-bit squared per cluster, rounded up to the nearest byte obviously, which uses far less space than 4-bytes per linked node per source node). Of course the limitation here is that you have to each leaf in turn to determine if it is visible rather than just following a list, but since this is only done once per frame this is not such a big overhead. */ int mVisCluster; /** The axis-aligned box which bounds node if it is a leaf. */ AxisAlignedBox mBounds; /** Number of face groups in this node if it is a leaf. */ int mNumFaceGroups; /** Index to the part of the main leaf facegroup index buffer(held in BspLevel) for this leaf. This leaf uses mNumFaceGroups from this pointer onwards. From here you use the index in this buffer to look up the actual face. Note that again for simplicity and bulk memory allocation the face group list itself is allocated by the BspLevel for all nodes, and each leaf node is given a section of it to work on. This saves lots of small memory allocations / deallocations which limits memory fragmentation. */ int mFaceGroupStart; IntersectingObjectSet mMovables; NodeBrushList mSolidBrushes; public: const IntersectingObjectSet& getObjects(void) const { return mMovables; } }; } #endif
{ "content_hash": "3381a51f7947a070dcca9c13dcaf6838", "timestamp": "", "source": "github", "line_count": 186, "max_line_length": 129, "avg_line_length": 50.543010752688176, "alnum_prop": 0.6666312094458037, "repo_name": "LiberatorUSA/GUCEF", "id": "f838df2af21f2ae93975ae43e9bfc4fb74a4ee15", "size": "10764", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "dependencies/Ogre/PlugIns/BSPSceneManager/include/OgreBspNode.h", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "68139" }, { "name": "C", "bytes": "2158073" }, { "name": "C++", "bytes": "14978976" }, { "name": "CMake", "bytes": "7671056" }, { "name": "Cuda", "bytes": "297" }, { "name": "Dockerfile", "bytes": "349" }, { "name": "Emacs Lisp", "bytes": "29494" }, { "name": "Fortran", "bytes": "4029" }, { "name": "Java", "bytes": "1389" }, { "name": "Lua", "bytes": "750004" }, { "name": "M4", "bytes": "1460" }, { "name": "Makefile", "bytes": "295122" }, { "name": "NSIS", "bytes": "35409" }, { "name": "Shell", "bytes": "181211" }, { "name": "Tcl", "bytes": "6493" }, { "name": "Vim Script", "bytes": "121243" } ], "symlink_target": "" }
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/cloud/video/stitcher/v1/sessions.proto package com.google.cloud.video.stitcher.v1; public interface InterstitialsOrBuilder extends // @@protoc_insertion_point(interface_extends:google.cloud.video.stitcher.v1.Interstitials) com.google.protobuf.MessageOrBuilder { /** * * * <pre> * List of ad breaks ordered by time. * </pre> * * <code>repeated .google.cloud.video.stitcher.v1.VodSessionAdBreak ad_breaks = 1;</code> */ java.util.List<com.google.cloud.video.stitcher.v1.VodSessionAdBreak> getAdBreaksList(); /** * * * <pre> * List of ad breaks ordered by time. * </pre> * * <code>repeated .google.cloud.video.stitcher.v1.VodSessionAdBreak ad_breaks = 1;</code> */ com.google.cloud.video.stitcher.v1.VodSessionAdBreak getAdBreaks(int index); /** * * * <pre> * List of ad breaks ordered by time. * </pre> * * <code>repeated .google.cloud.video.stitcher.v1.VodSessionAdBreak ad_breaks = 1;</code> */ int getAdBreaksCount(); /** * * * <pre> * List of ad breaks ordered by time. * </pre> * * <code>repeated .google.cloud.video.stitcher.v1.VodSessionAdBreak ad_breaks = 1;</code> */ java.util.List<? extends com.google.cloud.video.stitcher.v1.VodSessionAdBreakOrBuilder> getAdBreaksOrBuilderList(); /** * * * <pre> * List of ad breaks ordered by time. * </pre> * * <code>repeated .google.cloud.video.stitcher.v1.VodSessionAdBreak ad_breaks = 1;</code> */ com.google.cloud.video.stitcher.v1.VodSessionAdBreakOrBuilder getAdBreaksOrBuilder(int index); /** * * * <pre> * Information related to the content of the VOD session. * </pre> * * <code>.google.cloud.video.stitcher.v1.VodSessionContent session_content = 2;</code> * * @return Whether the sessionContent field is set. */ boolean hasSessionContent(); /** * * * <pre> * Information related to the content of the VOD session. * </pre> * * <code>.google.cloud.video.stitcher.v1.VodSessionContent session_content = 2;</code> * * @return The sessionContent. */ com.google.cloud.video.stitcher.v1.VodSessionContent getSessionContent(); /** * * * <pre> * Information related to the content of the VOD session. * </pre> * * <code>.google.cloud.video.stitcher.v1.VodSessionContent session_content = 2;</code> */ com.google.cloud.video.stitcher.v1.VodSessionContentOrBuilder getSessionContentOrBuilder(); }
{ "content_hash": "490ccdcf43d71df43ac473c4e86e1e14", "timestamp": "", "source": "github", "line_count": 98, "max_line_length": 96, "avg_line_length": 26.3265306122449, "alnum_prop": 0.6600775193798449, "repo_name": "googleapis/google-cloud-java", "id": "12a9c8e1656d113001b7241da8a0cf4dca5732a6", "size": "3174", "binary": false, "copies": "2", "ref": "refs/heads/main", "path": "java-video-stitcher/proto-google-cloud-video-stitcher-v1/src/main/java/com/google/cloud/video/stitcher/v1/InterstitialsOrBuilder.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Dockerfile", "bytes": "2614" }, { "name": "HCL", "bytes": "28592" }, { "name": "Java", "bytes": "826434232" }, { "name": "Jinja", "bytes": "2292" }, { "name": "Python", "bytes": "200408" }, { "name": "Shell", "bytes": "97954" } ], "symlink_target": "" }
.container { display: grid; grid-gap: 5px; grid-template-columns: [main-start] 1fr [content-start] 5fr [content-end main-end]; grid-template-rows: 40px auto 40px; } .header { grid-column: main-start / main-end; } .menu { } .content { grid-column: content-start / content-end; } .footer { grid-column: 1 / 3; }
{ "content_hash": "5bd6baf1e9be3bca68183382dd3b3b2b", "timestamp": "", "source": "github", "line_count": 22, "max_line_length": 85, "avg_line_length": 15.045454545454545, "alnum_prop": 0.6465256797583081, "repo_name": "mertnuhoglu/study", "id": "693def18916c43da809fee48df4fa5168f09c48f", "size": "333", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "html/cssgrid_01/cssgrid20.css", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Awk", "bytes": "1346" }, { "name": "Batchfile", "bytes": "2299" }, { "name": "C", "bytes": "174" }, { "name": "CSS", "bytes": "236474" }, { "name": "Clojure", "bytes": "629884" }, { "name": "Dockerfile", "bytes": "979" }, { "name": "Emacs Lisp", "bytes": "1702" }, { "name": "HTML", "bytes": "23846866" }, { "name": "Java", "bytes": "69706" }, { "name": "JavaScript", "bytes": "11626914" }, { "name": "Jupyter Notebook", "bytes": "372344" }, { "name": "Lua", "bytes": "31206" }, { "name": "Mermaid", "bytes": "55" }, { "name": "PLpgSQL", "bytes": "41904" }, { "name": "Procfile", "bytes": "293" }, { "name": "Python", "bytes": "8861" }, { "name": "R", "bytes": "168361" }, { "name": "Ruby", "bytes": "453" }, { "name": "Sass", "bytes": "1120" }, { "name": "Scala", "bytes": "837" }, { "name": "Shell", "bytes": "81225" }, { "name": "TeX", "bytes": "453" }, { "name": "TypeScript", "bytes": "465092" }, { "name": "Vim Script", "bytes": "4860" }, { "name": "sed", "bytes": "3" } ], "symlink_target": "" }
package org.arquillian.smart.testing.strategies.affected.fakeproject.test; import org.arquillian.smart.testing.strategies.affected.fakeproject.main.MyBusinessObject; import org.junit.Ignore; import org.junit.Test; @Ignore("Test ignored because it is used internally") public class MyBusinessObjectTest { private MyBusinessObject myBusinessObject; @Test public void should_test_task() { myBusinessObject.doTask(); } }
{ "content_hash": "d7c5cf478e038bc7843d2df0e8cc5462", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 90, "avg_line_length": 26.235294117647058, "alnum_prop": 0.773542600896861, "repo_name": "arquillian/smart-testing", "id": "e83bef77f456f83aa9c2a3f44d27bfbaa5c02bda", "size": "446", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "strategies/affected/src/test/java/org/arquillian/smart/testing/strategies/affected/fakeproject/test/MyBusinessObjectTest.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "780145" }, { "name": "Ruby", "bytes": "3895" }, { "name": "Shell", "bytes": "8413" } ], "symlink_target": "" }
<div class="box box-solid"> <div class="box-body"> <span class="posted-at"> Posted <strong>{{postedDate | relativeDate}}</strong> By <strong> <a class="cursor" ng-show="authorClickable" ng-click="authorClickAction()">{{postedBy}}</a> <span ng-hide="authorClickable">{{postedBy}}</span> </strong> </span> <p class="reply" ng-bind-html="postContent | unsafe"></p> </div> <div class="box-footer" ng-show="showControl"> <div class="replyControl" ng-show="!isDeleted" > <div class="replyButton"> <a ng-show="showReplyButton" title="Reply" ng-click="replyAction()" class="btn btn-primary btn-xs cursor" >REPLY</a> </div> <div class="editReplyButton"> <a ng-show="isPostOwner && showEditButton" title="Edit" ng-click="editAction()" class="btn btn-primary btn-xs" >EDIT</a> </div> <div class="deleteReplyButton"> <a ng-show="isPostOwner && showDeleteButton" ng-click="deleteAction()" title="delete" class="cursor btn btn-danger btn-xs">DELETE</a> </div> </div> </div> </div>
{ "content_hash": "65c335255f09da51da54c49b75641a88", "timestamp": "", "source": "github", "line_count": 41, "max_line_length": 66, "avg_line_length": 35.24390243902439, "alnum_prop": 0.4692041522491349, "repo_name": "CourseMapper/course-mapper", "id": "ce4b0b88439ccf41d6eebbbb3b070d0cd5a53f5d", "size": "1445", "binary": false, "copies": "1", "ref": "refs/heads/dev", "path": "frontend-modules/angular/views/discussion.reply.html", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "87151" }, { "name": "Dockerfile", "bytes": "597" }, { "name": "HTML", "bytes": "634613" }, { "name": "Java", "bytes": "937331" }, { "name": "JavaScript", "bytes": "1721309" }, { "name": "Makefile", "bytes": "287" } ], "symlink_target": "" }
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; namespace JumpKick.HttpLib { public class Cookies { protected static CookieContainer cookies = new CookieContainer(); public static void ClearCookies() { cookies = new CookieContainer(); } public static CookieContainer Container { get { return cookies; } } } }
{ "content_hash": "b46d2b666e5b72a444787cc1a4691e27", "timestamp": "", "source": "github", "line_count": 21, "max_line_length": 75, "avg_line_length": 22.047619047619047, "alnum_prop": 0.67170626349892, "repo_name": "zhaosichao/httplib", "id": "388181b5161a3cdbd19bceba3c04b5deab463eea", "size": "465", "binary": false, "copies": "2", "ref": "refs/heads/2.0.12", "path": "JumpKick.HttpLib/JumpKick.HttpLib/Cookies.cs", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C#", "bytes": "95176" } ], "symlink_target": "" }
using System.Linq; using Reusable.Commander; using Reusable.Exceptionize; using Xunit; namespace Reusable.Tests.Commander { public class CommandLineExtensionsTest { [Fact] public void AnonymousValues_None_Empty() { var commandLine = new CommandLine { { "foo", "bar" } }; Assert.False(commandLine.AnonymousValues().Any()); } [Fact] public void AnonymousValues_Some_NonEmpty() { var commandLine = new CommandLine { { Identifier.Empty, "baz" }, { Identifier.Empty, "qux" }, { Identifier.Empty, "bar" }, }; Assert.Equal(3, commandLine.AnonymousValues().Count()); } [Fact] public void CommandId_DoesNotContain_Throws() { var commandLine = new CommandLine { { "foo", "bar" }, }; Assert.ThrowsAny<DynamicException>( () => commandLine.CommandId() //filter => filter.When(name: "^CommandNameNotFound") ); } [Fact] public void CommandId_Contains_Identifier() { var commandLine = new CommandLine { { Identifier.Empty, "baz" }, { Identifier.Empty, "qux" }, { Identifier.Create("foo"), "bar" }, }; Assert.Equal(Identifier.Create("baz"), commandLine.CommandId()); } } }
{ "content_hash": "2c73fb3e7d73b24f453e63b044d3fbdd", "timestamp": "", "source": "github", "line_count": 57, "max_line_length": 76, "avg_line_length": 27.43859649122807, "alnum_prop": 0.48657289002557547, "repo_name": "he-dev/Reusable", "id": "93ec6e2ee6559a1dbe97c88666eb9745d2d1a6c0", "size": "1566", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Reusable.Tests.XUnit/src/Commander/CommandLineExtensionsTest.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "1047239" }, { "name": "CSS", "bytes": "588" }, { "name": "HTML", "bytes": "1757" } ], "symlink_target": "" }
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Chrisantha's Landing Page</title> <!-- Latest compiled and minified Bootstrap CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> </head> <body> <div class="container"> <div class="row"> <div class="col-md-6" style="background-color:rgb(255,0,0);"> <a href="/voronoi"><img src="static/images/voronoi_small.png"></a> <!-- <div class="jumbotron">ONE</div> --> </div> <!-- <div class="col-md-6" style="background-color:#0000FF;"> <a class="btn btn-default" href="http://www.google.com" role="button"> <div class="jumbotron">TWO</div> </a> </div> </div> <div class="row"> <div class="col-md-6" style="background-color:orange;"> <a href="/graph">Simple Graph Toy</a> </div> --> <div class="col-md-6" style="background-color:rgb(100,220,180);"> <a href="/game0"><img class="img-responsive" src="static/images/game0.png"></a> </div> </div> <div class="row text-center"><small><a href="/cv">This page is under construction.</a></small></div> </div> <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> </body> </html>
{ "content_hash": "974d6ad7b2c8303a6afaa7200aec59b9", "timestamp": "", "source": "github", "line_count": 43, "max_line_length": 208, "avg_line_length": 40.325581395348834, "alnum_prop": 0.6568627450980392, "repo_name": "cperera/landing", "id": "76c7cbb78e314e5aef667609c5912f4041eef9b4", "size": "1734", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "templates/hello.html", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "HTML", "bytes": "7461" }, { "name": "JavaScript", "bytes": "8067" }, { "name": "Python", "bytes": "1064" }, { "name": "Shell", "bytes": "621" }, { "name": "TeX", "bytes": "48037" } ], "symlink_target": "" }
<?php namespace Skrz\Bundle\AutowiringBundle\Annotation; /** * @author Jakub Kulhan <jakub.kulhan@gmail.com> * * @Annotation */ class Component { }
{ "content_hash": "6f64e51aa7c32718384657d41acbd8be", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 50, "avg_line_length": 13.909090909090908, "alnum_prop": 0.7058823529411765, "repo_name": "skrz/autowiring-bundle", "id": "5a2ae89b22e6d8650e59996ffe7e4d634782c9ce", "size": "153", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Annotation/Component.php", "mode": "33188", "license": "mit", "language": [ { "name": "PHP", "bytes": "41911" } ], "symlink_target": "" }
#include "fbtHciLocal.h" // Complete round trip HCI abstraction // 1. Send Command // 2. Wait for Command status / Command complete // 3. Wait fo event class CHciRoundTrip : public CHciLocal { public: CHciRoundTrip( CBTHW& btHw ); virtual ~CHciRoundTrip(); virtual DWORD QueueEvent(BYTE EventCode, LPVOID pParameters, DWORD dwParameterLength); virtual DWORD WaitForEvent(); virtual DWORD OnEvent(PFBT_HCI_EVENT_HEADER pEvent, DWORD Length); virtual DWORD ReadClassOfDevice(BYTE *ClassOfDevice); virtual DWORD ReadLocalName(BYTE *Name); virtual DWORD CreateConnection(BYTE BD_ADDR[FBT_HCI_BDADDR_SIZE], USHORT PacketType, BYTE PageScanRepetitionMode, BYTE PageScanMode, USHORT ClockOffset, BYTE AllowRoleSwitch, USHORT &ConnectionHandle); virtual DWORD Disconnect(USHORT ConnectionHandler, BYTE Reason); virtual DWORD SwitchRole(BYTE BD_ADDR[FBT_HCI_BDADDR_SIZE], BYTE Role); virtual DWORD RemoteNameRequest(BYTE BD_ADDR[FBT_HCI_BDADDR_SIZE], BYTE PageScanRepetitionMode, BYTE PageScanMode, USHORT ClockOffset, BYTE Name[FBT_HCI_NAME_SIZE]); protected: BYTE m_PendingEvent; LPVOID m_pEventParameters; DWORD m_dwEventParameterLength; HANDLE m_hEventSignal; }; #endif // _ROUND_TRIP_HCI_H_
{ "content_hash": "f6da67b9230460dcac609114d6f3a1aa", "timestamp": "", "source": "github", "line_count": 48, "max_line_length": 87, "avg_line_length": 29, "alnum_prop": 0.6846264367816092, "repo_name": "ten0s/freebt", "id": "bb8a477245f9ec65550a74748770a576ca52accf", "size": "1448", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "src/include/fbtHciRoundTrip.h", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "1228" }, { "name": "C", "bytes": "256195" }, { "name": "C#", "bytes": "9009" }, { "name": "C++", "bytes": "168913" }, { "name": "Clarion", "bytes": "2008" }, { "name": "HTML", "bytes": "128" }, { "name": "Makefile", "bytes": "269" } ], "symlink_target": "" }
```java package godfinger.sample; import org.springframework.stereotype.Service; import godfinger.http.rest.annotation.Export; import godfinger.http.rest.annotation.HttpDelete; import godfinger.http.rest.annotation.HttpGet; import godfinger.http.rest.annotation.HttpPost; import godfinger.http.rest.annotation.HttpPut; import godfinger.http.rest.annotation.Query; // Exports the service to http://host:port/sample @Export("sample") @Service public class SampleService { private String helloTo = "World"; // POST method for http://host:port/sample/echo?message={message} @HttpPost("echo") public String echo(@Query("message") String message) throws Exception { return message; } // GET method for http://host:port/sample/hello @HttpGet("hello") public String hello() throws Exception { return "Hello, " + helloTo + "!"; } // PUT method for http://host:port/sample/hello/{helloTo} @HttpPut("hello/{helloTo}") public void helloTo(@Path("helloTo") String helloTo) throws Exception { this.helloTo = helloTo; } // DELETE method for http://host:port/sample/hello @HttpDelete("hello") public void helloTo() throws Exception { helloTo = "World"; } } ``` ## Return Data Format The return data format is based on [JSend](http://labs.omniti.com/labs/jsend)
{ "content_hash": "2d3c8a71174c1df010035c0da830db1b", "timestamp": "", "source": "github", "line_count": 47, "max_line_length": 77, "avg_line_length": 27.78723404255319, "alnum_prop": 0.725114854517611, "repo_name": "godfinger/godfinger-core", "id": "f1acdcd7d47bc474e6727acb4d1e1cc05698a854", "size": "1355", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "README.md", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "85722" } ], "symlink_target": "" }
/* Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com) Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that the copyright notice and this permission notice and warranty disclaimer appear in supporting documentation, and that the name of the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. The author disclaim all warranties with regard to this software, including all implied warranties of merchantability and fitness. In no event shall the author be liable for any special, indirect or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action of contract, negligence or other tortious action, arising out of or in connection with the use or performance of this software. */ /** \file * * Header file for ISPProtocol.c. */ #ifndef _ISP_PROTOCOL_ #define _ISP_PROTOCOL_ /* Includes: */ #include <avr/io.h> #include "V2Protocol.h" /* Preprocessor Checks: */ #if ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1)) #undef ENABLE_ISP_PROTOCOL #if !defined(ENABLE_PDI_PROTOCOL) #define ENABLE_PDI_PROTOCOL #endif #endif /* Macros: */ /** Mask for the reading or writing of the high byte in a FLASH word when issuing a low-level programming command */ #define READ_WRITE_HIGH_BYTE_MASK (1 << 3) #define PROG_MODE_PAGED_WRITES_MASK (1 << 0) #define PROG_MODE_WORD_TIMEDELAY_MASK (1 << 1) #define PROG_MODE_WORD_VALUE_MASK (1 << 2) #define PROG_MODE_WORD_READYBUSY_MASK (1 << 3) #define PROG_MODE_PAGED_TIMEDELAY_MASK (1 << 4) #define PROG_MODE_PAGED_VALUE_MASK (1 << 5) #define PROG_MODE_PAGED_READYBUSY_MASK (1 << 6) #define PROG_MODE_COMMIT_PAGE_MASK (1 << 7) /* Function Prototypes: */ void ISPProtocol_EnterISPMode(void); void ISPProtocol_LeaveISPMode(void); void ISPProtocol_ProgramMemory(const uint8_t V2Command); void ISPProtocol_ReadMemory(const uint8_t V2Command); void ISPProtocol_ChipErase(void); void ISPProtocol_ReadFuseLockSigOSCCAL(const uint8_t V2Command); void ISPProtocol_WriteFuseLock(const uint8_t V2Command); void ISPProtocol_SPIMulti(void); #endif
{ "content_hash": "dd47efa0d26a078ce40210e0270dd9aa", "timestamp": "", "source": "github", "line_count": 70, "max_line_length": 118, "avg_line_length": 35.91428571428571, "alnum_prop": 0.7040572792362768, "repo_name": "kevlar1818/umeter", "id": "305e68cbc4e89f5f22a4e2a926ef9065ff1a7913", "size": "2676", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "LUFA_091223/Projects/AVRISP/Lib/ISPProtocol.h", "mode": "33188", "license": "mit", "language": [ { "name": "Assembly", "bytes": "12198" }, { "name": "Batchfile", "bytes": "151" }, { "name": "C", "bytes": "7209342" }, { "name": "C#", "bytes": "37149" }, { "name": "C++", "bytes": "2190934" }, { "name": "CSS", "bytes": "17626" }, { "name": "HTML", "bytes": "435979" }, { "name": "Java", "bytes": "5283" }, { "name": "KiCad", "bytes": "27468" }, { "name": "Makefile", "bytes": "1695025" }, { "name": "Objective-C", "bytes": "24814" }, { "name": "Python", "bytes": "831" }, { "name": "Shell", "bytes": "110" }, { "name": "XSLT", "bytes": "8745" } ], "symlink_target": "" }
using System; namespace HTTPlease.Core.Templates { /// <summary> /// A template segment that represents a query parameter whose value comes from a template parameter. /// </summary> sealed class ParameterizedQuerySegment : QuerySegment { /// <summary> /// The name of the template parameter whose value becomes the query parameter. /// </summary> readonly string _templateParameterName; /// <summary> /// Is the segment optional? /// </summary> /// <remarks> /// If <c>true</c>, then the query parameter will be omitted if its associated template variable is not defined. /// </remarks> readonly bool _isOptional; /// <summary> /// Create a new literal query segment. /// </summary> /// <param name="queryParameterName"> /// The name of the query parameter that the segment represents. /// </param> /// <param name="templateParameterName"> /// The value for the query parameter that the segment represents. /// </param> /// <param name="isOptional"> /// Is the segment optional? /// </param> public ParameterizedQuerySegment(string queryParameterName, string templateParameterName, bool isOptional = false) : base(queryParameterName) { if (String.IsNullOrWhiteSpace(templateParameterName)) throw new ArgumentException("Argument cannot be null, empty, or composed entirely of whitespace: 'value'.", nameof(templateParameterName)); _templateParameterName = templateParameterName; _isOptional = isOptional; } /// <summary> /// The name of the template parameter whose value becomes the query parameter. /// </summary> public string TemplateParameterName { get { return _templateParameterName; } } /// <summary> /// Is the segment optional? /// </summary> /// <remarks> /// If <c>true</c>, then the query parameter will be omitted if its associated template variable is not defined. /// </remarks> public bool IsOptional { get { return _isOptional; } } /// <summary> /// Does the segment have a parameterised (non-constant) value? /// </summary> public override bool IsParameterized => true; /// <summary> /// Get the value of the segment (if any). /// </summary> /// <param name="evaluationContext"> /// The current template evaluation context. /// </param> /// <returns> /// The segment value, or <c>null</c> if the segment has no value. /// </returns> public override string GetValue(ITemplateEvaluationContext evaluationContext) { if (evaluationContext == null) throw new ArgumentNullException(nameof(evaluationContext)); return evaluationContext[_templateParameterName, _isOptional]; } } }
{ "content_hash": "f2b14ddd562491f565e90a60daf69d1c", "timestamp": "", "source": "github", "line_count": 93, "max_line_length": 143, "avg_line_length": 28.9247311827957, "alnum_prop": 0.6806691449814126, "repo_name": "tintoy/HTTPlease", "id": "d33547b895242a3c4ebbf100ef6eca851509111b", "size": "2692", "binary": false, "copies": "1", "ref": "refs/heads/develop", "path": "src/HTTPlease.Core/Core/Templates/ParameterizedQuerySegment.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "525983" }, { "name": "PowerShell", "bytes": "2142" }, { "name": "Shell", "bytes": "2234" } ], "symlink_target": "" }
<a href="http://github.com/angular/angular.js/tree/v1.2.3/docs/content/api/index.ngdoc#L1" class="view-source btn btn-action"><i class="icon-zoom-in"> </i> View source</a><a href="http://github.com/angular/angular.js/edit/master/docs/content/api/index.ngdoc" class="improve-docs btn btn-primary"><i class="icon-edit"> </i> Improve this doc</a><h1><code ng:non-bindable=""></code> <div><span class="hint"></span> </div> </h1> <div><div class="api-reference-page"><h2 id="angularjs-api-docs">AngularJS API Docs</h2> <p>Welcome to the AngularJS API docs page. These pages contain the AngularJS reference materials for version <strong ng-bind="version"></strong>.</p> <p>The documentation is organized into <strong>modules</strong> which contain various components of an AngularJS application. These components are directives, services, filters, providers, types, global APIs and testing mocks.</p> <div class="alert alert-info"> <strong>Angular Namespaces <code>$</code> and <code>$$</code></strong> To prevent accidental name collisions with your code, Angular prefixes names of public objects with <code>$</code> and names of private objects with <code>$$</code>. Please do not use the <code>$</code> or <code>$$</code> prefix in your code. </div> <h3 id="angularjs-api-docs_angular-namespace">Angular Namespace</h3> <h3 id="angularjs-api-docs"><a href="api/ng">ng (core module)</a></h3> <p>This module is provided by default and contains the core components of AngularJS.</p> <table class="definition-table spaced"> <tr> <td><a href="api/ng#directive">Directives</a></td> <td> <p> This is the core collection of directives you would use in your template code to build an AngularJS application. </p> <p> Some examples include: <a href="api/ng.directive:ngClick"><code>ngClick</code></a>, <a href="api/ng.directive:ngInclude"><code>ngInclude</code></a>, <a href="api/ng.directive:ngRepeat"><code>ngRepeat</code></a>, etc… <br /> </p> </td> </tr> <tr> <td> <a href="api/ng#service">Services / Factories</a> </td> <td> <p> This is the core collection of services which are used within the DI of your application. </p> <p> Some examples include: <a href="api/ng.$compile"><code>$compile</code></a>, <a href="api/ng.$http"><code>$http</code></a>, <a href="api/ngRoute.$routeParams">$routeParams</a>, <a href="api/ng.$location"><code>$location</code></a>, etc… <p> </td> </tr> <tr> <td> <a href="api/ng#filter">Filters</a> </td> <td> <p> The core filters available in the ng module are used to transform template data before it is renders within directives and expressions. </p> <p> Some examples include: <a href="api/ng.filter:filter"><code>filter</code></a>, <a href="api/ng.filter:date"><code>date</code></a>, <a href="api/ng.filter:currency"><code>currency</code></a>, <a href="api/ng.filter:lowercase"><code>lowercase</code></a>, <a href="api/ng.filter:uppercase"><code>uppercase</code></a>, etc... </p> </td> </tr> <tr> <td> <a href="api/ng#function">Global APIs</a> </td> <td> <p> The core global API functions are attached to the angular object. These core functions are useful for low level JavaScript operations within your application. </p> <p> Some examples include: <a href="api/angular.copy"><code>angular.copy()</code></a>, <a href="api/angular.equals"><code>angular.equals()</code></a>, <a href="api/angular.element"><code>angular.element()</code></a>, etc... </p> </td> </tr> </table> <h3 id="angularjs-api-docs"><a href="api/ngRoute">ngRoute</a></h3> <p>Use ngRoute to enable URL routing to your application. The ngRoute module supports URL management via both hashbang and HTML5 pushState.</p> <div class="alert alert-info">Include the <strong>angular-route.js</strong> file and set <strong>ngRoute</strong> as a dependency for this to work in your application.</div> <table class="definition-table spaced"> <tr> <td> <a href="api/ngRoute#service">Services / Factories</a> </td> <td> The following services are used for route management: <ul> <li><a href="api/ngRoute.$routeParams">$routeParams</a> is used to access the querystring values present in the URL.</li> <li><a href="api/ngRoute.$route">$route</a> is used to access the details of the route that is currently being accessed.</li> <li><a href="api/ngRoute.$routeProvider">$routeProvider</a> is used to register routes for the application.</li> </ul> </td> </tr> <tr> <td> <a href="api/ngRoute#directive">Directives</a> </td> <td> The <a href="api/ngRoute.directive:ngView">ngView</a> directive will display the template of the current route within the page. </td> </tr> </table> <h3 id="angularjs-api-docs"><a href="api/ngAnimate">ngAnimate</a></h3> <p>Use ngAnimate to enable animation features into your application. Various core ng directives will provide animation hooks into your application when ngAnimate is included. Animations are defined by using CSS transitions/animations or JavaScript callbacks.</p> <div class="alert alert-info">Include the <strong>angular-animate.js</strong> file and set <strong>ngAnimate</strong> as a dependency for this to work in your application.</div> <table class="definition-table spaced"> <tr> <td> <a href="api/ngAnimate#service">Services / Factories</a> </td> <td> Use <a href="api/ngAnimate.$animate">$animate</a> to trigger animation operations within your directive code. </td> </tr> <tr> <td> <a href="api/ngAnimate">CSS-based animations</a> </td> <td> Follow ngAnimate’s CSS naming structure to reference CSS transitions / keyframe animations in AngularJS. Once defined the animation can be triggered by referencing the CSS class within the HTML template code. </td> </tr> <tr> <td> <a href="api/ngAnimate">JS-based animations</a> </td> <td> Use <a href="api/angular.Module#methods_animation"><code>module.animation()</code></a> to register a JavaScript animation. Once registered the animation can be triggered by referencing the CSS class within the HTML template code. </td> </tr> </table> <h3 id="angularjs-api-docs"><a href="api/ngResource">ngResource</a></h3> <p>Use the ngResource module when querying and posting data to a REST API.</p> <div class="alert alert-info">Include the <strong>angular-resource.js</strong> file and set <strong>ngResource</strong> as a dependency for this to work in your application.</div> <table class="definition-table spaced"> <tr> <td> <a href="api/ngResource#service">Services / Factories</a> </td> <td> The <a href="api/ngResource.$resource">$resource</a> service is used to define RESTful objects which communicate with a REST API. </td> </tr> </table> <h3 id="angularjs-api-docs"><a href="api/ngCookies">ngCookies</a></h3> <p>Use the ngCookies module to handle cookie management within your application.</p> <div class="alert alert-info">Include the <strong>angular-cookies.js</strong> file and set <strong>ngCookies</strong> as a dependency for this to work in your application.</div> <table class="definition-table spaced"> <tr> <td> <a href="api/ngCookies#service">Services / Factories</a> </td> <td> The following services are used for cookie management: <ul> <li>The <a href="api/ngCookies.$cookies">$cookie</a> service is a convenient wrapper to store simple data within browser cookies.</li> <li><a href="api/ngCookies.$cookieStore">$cookieStore</a> is used to store more complex data using serialization.</li> </ul> </td> </tr> </table> <h3 id="angularjs-api-docs"><a href="api/ngTouch">ngTouch</a></h3> <p>Use ngTouch when developing for mobile browsers/devices.</p> <div class="alert alert-info">Include the <strong>angular-touch.js</strong> file and set <strong>ngTouch</strong> as a dependency for this to work in your application.</div> <table class="definition-table spaced"> <tr> <td> <a href="api/ngTouch#service">Services / Factories</a> </td> <td> The <a href="api/ngTouch.$swipe">$swipe</a> service is used to register and manage mobile DOM events. </td> </tr> <tr> <td> <a href="api/ngTouch#directive">Directives</a> </td> <td> Various directives are available in ngTouch to emulate mobile DOM events. </td> </tr> </table> <h3 id="angularjs-api-docs"><a href="api/ngSanitize">ngSanitize</a></h3> <p>Use ngSanitize to securely parse and manipulate HTML data in your application.</p> <div class="alert alert-info">Include the <strong>angular-sanitize.js</strong> file and set <strong>ngSanitize</strong> as a dependency for this to work in your application.</div> <table class="definition-table spaced"> <tr> <td> <a href="api/ngSanitize#service">Services / Factories</a> </td> <td> The <a href="api/ngSanitize.$sanitize">$sanitize</a> service is used to clean up dangerous HTML code in a quick and convenient way. </td> </tr> <tr> <td> <a href="api/ngTouch#filter">Filters</a> </td> <td> The <a href="api/ngSanitize.filter:linky">linky filter</a> is used to turn URLs into HTML links within the provided string. </td> </tr> </table> <h3 id="angularjs-api-docs"><a href="api/ngMock">ngMock</a></h3> <p>Use ngMock to inject and mock modules, factories, services and providers within your unit tests </p> <div class="alert alert-info">Include the <strong>angular-mocks.js</strong> file into your test runner for this to work.</div> <table class="definition-table spaced"> <tr> <td> <a href="api/ngMock#service">Services / Factories</a> </td> <td> <p> ngMock will extend the behavior of various core services to become testing aware and manageable in a synchronous manner. <p> <p> Some examples include: <a href="api/ngMock.$timeout">$timeout</a>, <a href="api/ngMock.$interval">$interval</a>, <a href="api/ngMock.$log">$log</a>, <a href="api/ngMock.$httpBackend">$httpBackend</a>, etc... <p> </td> </tr> <tr> <td> <a href="api/ngMock#function">Global APIs</a> </td> <td> <p> Various helper functions are available to inject and mock modules within unit test code. </p> <p> Some examples <a href="api/angular.mock.inject"><code>inject()</code></a>, <a href="api/angular.mock.module"><code>module()</code></a>, <a href="api/angular.mock.dump"><code>dump()</code></a>, etc... <p> </td> </tr> </table></div></div>
{ "content_hash": "bf88465929d8437307b5cdb5b4ab2483", "timestamp": "", "source": "github", "line_count": 279, "max_line_length": 379, "avg_line_length": 39.75627240143369, "alnum_prop": 0.6495672556797693, "repo_name": "chenchiyuan/hawaii", "id": "6ad3c79b1b06a93c17687282763484e753060a06", "size": "11098", "binary": false, "copies": "7", "ref": "refs/heads/master", "path": "hawaii/apps/base/static/js/angular-1.2.3/docs/partials/api/index.html", "mode": "33261", "license": "bsd-3-clause", "language": [ { "name": "ApacheConf", "bytes": "1556" }, { "name": "CSS", "bytes": "100775" }, { "name": "HTML", "bytes": "3479506" }, { "name": "JavaScript", "bytes": "2146262" }, { "name": "Python", "bytes": "106187" }, { "name": "Shell", "bytes": "534" } ], "symlink_target": "" }
package com.balidao.transreport.dao; import com.balidao.transreport.domain.Friend; /** * Created by double on 16-12-11. */ public interface IFriendDao extends IBaseDao<Friend> { }
{ "content_hash": "f394bd01fc557082e605920fce55543a", "timestamp": "", "source": "github", "line_count": 9, "max_line_length": 54, "avg_line_length": 20.444444444444443, "alnum_prop": 0.7554347826086957, "repo_name": "shalldon/logistics", "id": "029ff950f02ac7855c6cf8dcec35b2940ebc3dc2", "size": "184", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "be/transreport/src/main/java/com/balidao/transreport/dao/IFriendDao.java", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "1648" }, { "name": "HTML", "bytes": "26983" }, { "name": "Java", "bytes": "175095" }, { "name": "JavaScript", "bytes": "14008" }, { "name": "Shell", "bytes": "78" } ], "symlink_target": "" }
""" DocuSign REST API The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ import pprint import re # noqa: F401 import six from docusign_esign.client.configuration import Configuration class PurchasedEnvelopesInformation(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ """ Attributes: swagger_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. """ swagger_types = { 'amount': 'str', 'app_name': 'str', 'currency_code': 'str', 'platform': 'str', 'product_id': 'str', 'quantity': 'str', 'receipt_data': 'str', 'store_name': 'str', 'transaction_id': 'str' } attribute_map = { 'amount': 'amount', 'app_name': 'appName', 'currency_code': 'currencyCode', 'platform': 'platform', 'product_id': 'productId', 'quantity': 'quantity', 'receipt_data': 'receiptData', 'store_name': 'storeName', 'transaction_id': 'transactionId' } def __init__(self, _configuration=None, **kwargs): # noqa: E501 """PurchasedEnvelopesInformation - a model defined in Swagger""" # noqa: E501 if _configuration is None: _configuration = Configuration() self._configuration = _configuration self._amount = None self._app_name = None self._currency_code = None self._platform = None self._product_id = None self._quantity = None self._receipt_data = None self._store_name = None self._transaction_id = None self.discriminator = None setattr(self, "_{}".format('amount'), kwargs.get('amount', None)) setattr(self, "_{}".format('app_name'), kwargs.get('app_name', None)) setattr(self, "_{}".format('currency_code'), kwargs.get('currency_code', None)) setattr(self, "_{}".format('platform'), kwargs.get('platform', None)) setattr(self, "_{}".format('product_id'), kwargs.get('product_id', None)) setattr(self, "_{}".format('quantity'), kwargs.get('quantity', None)) setattr(self, "_{}".format('receipt_data'), kwargs.get('receipt_data', None)) setattr(self, "_{}".format('store_name'), kwargs.get('store_name', None)) setattr(self, "_{}".format('transaction_id'), kwargs.get('transaction_id', None)) @property def amount(self): """Gets the amount of this PurchasedEnvelopesInformation. # noqa: E501 The total amount of the purchase. # noqa: E501 :return: The amount of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._amount @amount.setter def amount(self, amount): """Sets the amount of this PurchasedEnvelopesInformation. The total amount of the purchase. # noqa: E501 :param amount: The amount of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._amount = amount @property def app_name(self): """Gets the app_name of this PurchasedEnvelopesInformation. # noqa: E501 The AppName of the client application. # noqa: E501 :return: The app_name of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._app_name @app_name.setter def app_name(self, app_name): """Sets the app_name of this PurchasedEnvelopesInformation. The AppName of the client application. # noqa: E501 :param app_name: The app_name of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._app_name = app_name @property def currency_code(self): """Gets the currency_code of this PurchasedEnvelopesInformation. # noqa: E501 Specifies the ISO currency code of the purchase. This is based on the ISO 4217 currency code information. # noqa: E501 :return: The currency_code of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._currency_code @currency_code.setter def currency_code(self, currency_code): """Sets the currency_code of this PurchasedEnvelopesInformation. Specifies the ISO currency code of the purchase. This is based on the ISO 4217 currency code information. # noqa: E501 :param currency_code: The currency_code of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._currency_code = currency_code @property def platform(self): """Gets the platform of this PurchasedEnvelopesInformation. # noqa: E501 The Platform of the client application # noqa: E501 :return: The platform of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._platform @platform.setter def platform(self, platform): """Sets the platform of this PurchasedEnvelopesInformation. The Platform of the client application # noqa: E501 :param platform: The platform of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._platform = platform @property def product_id(self): """Gets the product_id of this PurchasedEnvelopesInformation. # noqa: E501 The Product ID from the AppStore. # noqa: E501 :return: The product_id of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._product_id @product_id.setter def product_id(self, product_id): """Sets the product_id of this PurchasedEnvelopesInformation. The Product ID from the AppStore. # noqa: E501 :param product_id: The product_id of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._product_id = product_id @property def quantity(self): """Gets the quantity of this PurchasedEnvelopesInformation. # noqa: E501 The quantity of envelopes to add to the account. # noqa: E501 :return: The quantity of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._quantity @quantity.setter def quantity(self, quantity): """Sets the quantity of this PurchasedEnvelopesInformation. The quantity of envelopes to add to the account. # noqa: E501 :param quantity: The quantity of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._quantity = quantity @property def receipt_data(self): """Gets the receipt_data of this PurchasedEnvelopesInformation. # noqa: E501 The encrypted Base64 encoded receipt data. # noqa: E501 :return: The receipt_data of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._receipt_data @receipt_data.setter def receipt_data(self, receipt_data): """Sets the receipt_data of this PurchasedEnvelopesInformation. The encrypted Base64 encoded receipt data. # noqa: E501 :param receipt_data: The receipt_data of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._receipt_data = receipt_data @property def store_name(self): """Gets the store_name of this PurchasedEnvelopesInformation. # noqa: E501 The name of the AppStore. # noqa: E501 :return: The store_name of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._store_name @store_name.setter def store_name(self, store_name): """Sets the store_name of this PurchasedEnvelopesInformation. The name of the AppStore. # noqa: E501 :param store_name: The store_name of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._store_name = store_name @property def transaction_id(self): """Gets the transaction_id of this PurchasedEnvelopesInformation. # noqa: E501 Specifies the Transaction ID from the AppStore. # noqa: E501 :return: The transaction_id of this PurchasedEnvelopesInformation. # noqa: E501 :rtype: str """ return self._transaction_id @transaction_id.setter def transaction_id(self, transaction_id): """Sets the transaction_id of this PurchasedEnvelopesInformation. Specifies the Transaction ID from the AppStore. # noqa: E501 :param transaction_id: The transaction_id of this PurchasedEnvelopesInformation. # noqa: E501 :type: str """ self._transaction_id = transaction_id def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value if issubclass(PurchasedEnvelopesInformation, dict): for key, value in self.items(): result[key] = value return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, PurchasedEnvelopesInformation): return False return self.to_dict() == other.to_dict() def __ne__(self, other): """Returns true if both objects are not equal""" if not isinstance(other, PurchasedEnvelopesInformation): return True return self.to_dict() != other.to_dict()
{ "content_hash": "ebb228b7e43a5732d3acd0478180d286", "timestamp": "", "source": "github", "line_count": 338, "max_line_length": 140, "avg_line_length": 32.16863905325444, "alnum_prop": 0.6068242435390416, "repo_name": "docusign/docusign-python-client", "id": "972bd8450f839a3d9d463bbf2f0cdcda92c4a742", "size": "10890", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "docusign_esign/models/purchased_envelopes_information.py", "mode": "33188", "license": "mit", "language": [ { "name": "Python", "bytes": "9687716" } ], "symlink_target": "" }
/** * */ package apu.scratch.tools; import java.util.ArrayList; import java.util.List; import apu.scratch.tools.gen.followers.FollowerListGen; import apu.scratch.tools.gen.visualizer.VisualizerGenMinim; /** * @author MegaApuTurkUltra */ public abstract class ToolBase { public abstract ParamDef[] getParams(); public abstract void call(String[] args); public abstract String getName(); public void printUsage() { ParamDef[] params = getParams(); if (EXIT_ON_USAGE) { System.err.print("Usage: java -jar ScratchTools.jar "); System.err.print(getName()); for (int i = 0; i < params.length; i++) { System.err.print(" "); if (params[i].isOptional()) System.err.print("["); else System.err.print("<"); System.err.print(params[i].getName()); if (params[i].isOptional()) System.err.print("]"); else System.err.print(">"); } } else System.err.print("Missing parameters!"); System.err.println(); System.err.println(); for (int i = 0; i < params.length; i++) { System.err.print("\t"); System.err.print(params[i].getName()); System.err.print(": "); System.err.print(params[i].getDesc()); System.err.println(); } if (EXIT_ON_USAGE) System.exit(0); } public void callWithParams(String[] args) { int required = 0; ParamDef[] params = getParams(); for (int i = 0; i < params.length; i++) { if (!params[i].isOptional()) required++; } if (args.length < required || args.length > params.length || args[0].equals("--help")) { printUsage(); return; } call(args); } public String toString() { return getName(); } public static final List<ToolBase> tools; static { tools = new ArrayList<>(); tools.add(new FollowerListGen()); tools.add(new VisualizerGenMinim()); } public static boolean EXIT_ON_USAGE = true; public static void printToolUsage() { System.err .println("Usage: java -jar ScratchTools.jar <ToolName> [options]"); System.err.println(); System.err.println("Tools:"); try { for (ToolBase tool : tools) { System.err.print("\t"); System.err.println(tool.getName()); } } catch (Exception e) { e.printStackTrace(); } if (EXIT_ON_USAGE) System.exit(0); } public static void runTool(String[] args) { if (args.length < 1 || args[0].equals("--help")) { printToolUsage(); return; } String name = args[0]; String[] toolArgs = new String[args.length - 1]; System.arraycopy(args, 1, toolArgs, 0, toolArgs.length); try { ToolBase toCall = null; for (ToolBase tool : tools) { if (tool.getName().equals(name)) { toCall = tool; break; } } if (toCall == null) { System.err.println("No such tool!"); printToolUsage(); } else { toCall.callWithParams(toolArgs); } } catch (Exception e) { e.printStackTrace(); } } }
{ "content_hash": "3026b78f12cc757f7bcea4daf7c34e06", "timestamp": "", "source": "github", "line_count": 129, "max_line_length": 71, "avg_line_length": 22.186046511627907, "alnum_prop": 0.6254367575122292, "repo_name": "MegaApuTurkUltra/ScratchTools", "id": "e320cf6951d543a74507e213effb8190cd835e4c", "size": "2862", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/apu/scratch/tools/ToolBase.java", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "501" }, { "name": "Java", "bytes": "60969" }, { "name": "JavaScript", "bytes": "3038" } ], "symlink_target": "" }
package com.webfirmframework.wffweb.tag.html.tables; import java.io.Serial; import java.util.logging.Logger; import com.webfirmframework.wffweb.settings.WffConfiguration; import com.webfirmframework.wffweb.tag.html.AbstractHtml; import com.webfirmframework.wffweb.tag.html.attribute.core.AbstractAttribute; import com.webfirmframework.wffweb.tag.html.core.PreIndexedTagName; import com.webfirmframework.wffweb.tag.html.identifier.GlobalAttributable; import com.webfirmframework.wffweb.tag.html.identifier.TableAttributable; /** * @author WFF * @since 1.0.0 * @version 1.0.0 * */ public class Table extends AbstractHtml { @Serial private static final long serialVersionUID = 1_0_0L; private static final Logger LOGGER = Logger.getLogger(Table.class.getName()); private static final PreIndexedTagName PRE_INDEXED_TAG_NAME; static { PRE_INDEXED_TAG_NAME = (PreIndexedTagName.TABLE); } { init(); } /** * * @param base i.e. parent tag of this tag * @param attributes An array of {@code AbstractAttribute} * * @since 1.0.0 */ public Table(final AbstractHtml base, final AbstractAttribute... attributes) { super(PRE_INDEXED_TAG_NAME, base, attributes); if (WffConfiguration.isDirectionWarningOn()) { warnForUnsupportedAttributes(attributes); } } private static void warnForUnsupportedAttributes(final AbstractAttribute... attributes) { for (final AbstractAttribute abstractAttribute : attributes) { if (!(abstractAttribute != null && (abstractAttribute instanceof TableAttributable || abstractAttribute instanceof GlobalAttributable))) { LOGGER.warning(abstractAttribute + " is not an instance of TableAttribute"); } } } /** * invokes only once per object * * @author WFF * @since 1.0.0 */ protected void init() { // to override and use this method } }
{ "content_hash": "b23a6184a1eb4ae44a82b11ead0ca625", "timestamp": "", "source": "github", "line_count": 73, "max_line_length": 94, "avg_line_length": 27.78082191780822, "alnum_prop": 0.6755424063116371, "repo_name": "webfirmframework/wff", "id": "6d75ffd97df62ee6c6930aefc1dfb383e5bba25b", "size": "2649", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "wffweb/src/main/java/com/webfirmframework/wffweb/tag/html/tables/Table.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Java", "bytes": "12496417" }, { "name": "JavaScript", "bytes": "177409" } ], "symlink_target": "" }
""" database.sqlalchemy_test_issues ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Testing Issues with SQLAlchemy http://flask.pocoo.org/snippets/36/ """ import os import sys sys.path.insert(0, os.path.dirname(os.path.abspath(os.path.dirname(__file__)))) from flask import request, Response from app import app """ You would like to perform some tests to ensure that you can insert and query for objects. Insertions work, but when you try to perform a query in your tests you get a problem like this: Failed example: len(MyObject.query.all()) Exception raised: Traceback (most recent call last): File ".../lib/python2.6/doctest.py", line 1248, in __run compileflags, 1) in test.globs File "<doctest myapp.MyObject[4]>", line 1, in <module> len(MyObject.query.all()) AttributeError: 'NoneType' object has no attribute 'all' What you need to do is ensure that you have initialized a request context for your tests. This can be done by: app.test_request_context().push() Now when you run your tests and query them they should work. """ @app.route('/') def index(): return 'index' if __name__ == "__main__": app.run()
{ "content_hash": "2c6a435c5ada4621932ce355f20d3eea", "timestamp": "", "source": "github", "line_count": 45, "max_line_length": 110, "avg_line_length": 26.133333333333333, "alnum_prop": 0.6709183673469388, "repo_name": "XiangyiKong/flask-snippets", "id": "90539bcd220a79d6be7856b27658706a3608c2eb", "size": "1200", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "database/sqlalchemy_test_issues.py", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "Python", "bytes": "169715" } ], "symlink_target": "" }
$.components.register("appear", { defaults: {}, api: function(context) { if (!$.fn.appear) return; $(document).on("appear", '[data-plugin="appear"]', function() { var $item = $(this), animate = $item.data("animate"); if ($item.hasClass('appear-no-repeat')) return; $item.removeClass("invisible").addClass('animation-' + animate); if ($item.data("repeat") === false) { $item.addClass('appear-no-repeat'); } }); $(document).on("disappear", '[data-plugin="appear"]', function() { var $item = $(this), animate = $item.data("animate"); if ($item.hasClass('appear-no-repeat')) return; $item.addClass("invisible").removeClass('animation-' + animate); }); }, init: function(context) { if (!$.fn.appear) return; var defaults = $.components.getDefaults("appear"); $('[data-plugin="appear"]', context).appear(defaults); $('[data-plugin="appear"]', context).not(':appeared').addClass("invisible"); } });
{ "content_hash": "551702b167ea5a5f752c5005c8b705c5", "timestamp": "", "source": "github", "line_count": 37, "max_line_length": 80, "avg_line_length": 27.56756756756757, "alnum_prop": 0.5754901960784313, "repo_name": "afquinterog/mkitserverapp", "id": "1cda78bfd9a08025e30744a4a51ab9301aa98456", "size": "1165", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "web/js/components/jquery-appear.js", "mode": "33261", "license": "bsd-3-clause", "language": [ { "name": "ApacheConf", "bytes": "202" }, { "name": "Batchfile", "bytes": "1030" }, { "name": "CSS", "bytes": "824568" }, { "name": "HTML", "bytes": "28128" }, { "name": "JavaScript", "bytes": "163278" }, { "name": "PHP", "bytes": "211629" }, { "name": "Shell", "bytes": "805" } ], "symlink_target": "" }
if (NOT AOM_BUILD_CMAKE_TOOLCHAINS_ARMV7_IOS_CMAKE_) set(AOM_BUILD_CMAKE_TOOLCHAINS_ARMV7_IOS_CMAKE_ 1) if (XCODE) # TODO(tomfinegan): Handle arm builds in Xcode. message(FATAL_ERROR "This toolchain does not support Xcode.") endif () set(CMAKE_SYSTEM_PROCESSOR "armv7") set(CMAKE_OSX_ARCHITECTURES "armv7") include("${CMAKE_CURRENT_LIST_DIR}/arm-ios-common.cmake") # No intrinsics flag required for armv7s-ios. set(AOM_NEON_INTRIN_FLAG "") # No runtime cpu detect for armv7s-ios. set(CONFIG_RUNTIME_CPU_DETECT 0 CACHE BOOL "") # RTCD generation requires --disable-media for armv7s-ios. set(AOM_RTCD_FLAGS ${AOM_RTCD_FLAGS} --disable-media) string(STRIP AOM_RTCD_FLAGS ${AOM_RTCD_FLAGS}) endif () # AOM_BUILD_CMAKE_TOOLCHAINS_ARMV7_IOS_CMAKE_
{ "content_hash": "1d3ddcce66c97d68b2619011c151ac83", "timestamp": "", "source": "github", "line_count": 24, "max_line_length": 63, "avg_line_length": 31.416666666666668, "alnum_prop": 0.7427055702917772, "repo_name": "smarter/aom", "id": "bcd37a06d7dd078199961222ad9c4f5a4464a0d5", "size": "1282", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "build/cmake/toolchains/armv7-ios.cmake", "mode": "33188", "license": "bsd-2-clause", "language": [ { "name": "Assembly", "bytes": "813276" }, { "name": "C", "bytes": "10769422" }, { "name": "C++", "bytes": "1394428" }, { "name": "CMake", "bytes": "179502" }, { "name": "Makefile", "bytes": "114701" }, { "name": "Objective-C", "bytes": "402286" }, { "name": "Perl", "bytes": "77061" }, { "name": "Perl6", "bytes": "106037" }, { "name": "Python", "bytes": "5034" }, { "name": "Shell", "bytes": "128409" } ], "symlink_target": "" }
title: Adna Duherich gender: female graduated: 2012 submitted: false ---
{ "content_hash": "8a00755ca44969900ee78eaf1c5465f1", "timestamp": "", "source": "github", "line_count": 6, "max_line_length": 20, "avg_line_length": 12.333333333333334, "alnum_prop": 0.7567567567567568, "repo_name": "johnathan99j/history-project", "id": "94ded7051d1dcfe85dd307af88fbf737188496dc", "size": "78", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "_people/adna_duherich.md", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "86536" }, { "name": "CoffeeScript", "bytes": "41479" }, { "name": "Dockerfile", "bytes": "974" }, { "name": "HTML", "bytes": "109321" }, { "name": "JavaScript", "bytes": "16577" }, { "name": "Python", "bytes": "1892" }, { "name": "Ruby", "bytes": "65568" }, { "name": "Shell", "bytes": "6659" } ], "symlink_target": "" }
var StaticGridLayerModelImazon = cdb.core.Model.extend(); var StaticGridLayerImazon = cdb.core.View.extend({ hide: function() { this.model.set("opacity", 0); }, show: function() { this.model.set("opacity", 1); }, set_time: function(start_year, start_month, end_year, end_month) { start_month && this.model.set("start_month", start_month); end_month && this.model.set("end_month", end_month); start_year && this.model.set("start_year", start_year); end_year && this.model.set("end_year", end_year); this._onDateUpdate(); }, _onOpacityUpdate: function() { this.layer.setOpacity(this.model.get("opacity")); }, _onDateUpdate: function() { var query = "SELECT * FROM " + this.options.table + " WHERE date between '" + this.model.get("start_year") + "-" + this.model.get("start_month") + "-1' AND '" + this.model.get("end_year") + "-" + this.model.get("end_month") + "-1'"; this.model.set("query", query); this.layer.setQuery(query); }, cache_time: function() { }, initialize: function() { var that = this; this.model = new StaticGridLayerModelImazon({ start_year: 2007, start_month: 1, end_year: 2013, end_month: 12 }); this.model.bind("change:opacity", this._onOpacityUpdate, this); var query = "SELECT * FROM " + this.options.table + " WHERE date between '" + this.model.get("start_year") + "-" + this.model.get("start_month") + "-1' AND '" + this.model.get("end_year") + "-" + this.model.get("end_month") + "-1'"; this.model.set("query", query); this.layer = new CartoDBLayer({ map: map, user_name: '', tiler_domain: that.options.cloudfront_url, sql_domain: that.options.cloudfront_url, extra_params: { v: that.options.global_version}, //define a version number on requests tiler_path: '/tiles/', tiler_suffix: '.png', tiler_grid: '.grid.json', table_name: that.options.table, query: query, layer_order: 1, opacity: 1, interactivity: "cartodb_id", debug: false, auto_bound: false }); } });
{ "content_hash": "d8442db612ddc4cde07b8e179ffbbd8b", "timestamp": "", "source": "github", "line_count": 68, "max_line_length": 236, "avg_line_length": 31.16176470588235, "alnum_prop": 0.6054742803209061, "repo_name": "cciciarelli8/gfw", "id": "00567fa48dd8f894743a779d22b864e3647f910c", "size": "2119", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "lib/assets/javascripts/gfw/static_grid_layer_imazon.js", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "182803" }, { "name": "JavaScript", "bytes": "675239" }, { "name": "Ruby", "bytes": "73186" } ], "symlink_target": "" }
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> <version>2.11-SNAPSHOT</version> <relativePath>../../parent</relativePath> </parent> <artifactId>camel-testng</artifactId> <packaging>bundle</packaging> <name>Camel :: TestNG</name> <description>Camel Testing Library using TestNG</description> <properties> <camel.osgi.export.pkg>org.apache.camel.testng.*</camel.osgi.export.pkg> </properties> <dependencies> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-core</artifactId> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-spring</artifactId> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-spring</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </dependency> <!-- optional dependencies for running tests --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
{ "content_hash": "990d84885dda20117a3c1ea19ab7cb6e", "timestamp": "", "source": "github", "line_count": 66, "max_line_length": 201, "avg_line_length": 36.43939393939394, "alnum_prop": 0.6636174636174637, "repo_name": "aaronwalker/camel", "id": "657bce6a8c7d6406b286714ffdff782bed84296c", "size": "2405", "binary": false, "copies": "1", "ref": "refs/heads/trunk", "path": "components/camel-testng/pom.xml", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "ActionScript", "bytes": "20202" }, { "name": "CSS", "bytes": "221391" }, { "name": "Groovy", "bytes": "2682" }, { "name": "Haskell", "bytes": "5970" }, { "name": "Java", "bytes": "27972791" }, { "name": "JavaScript", "bytes": "3697148" }, { "name": "PHP", "bytes": "88860" }, { "name": "Ruby", "bytes": "9910" }, { "name": "Scala", "bytes": "220463" }, { "name": "Shell", "bytes": "12865" }, { "name": "TypeScript", "bytes": "715" }, { "name": "XQuery", "bytes": "1248" }, { "name": "XSLT", "bytes": "53623" } ], "symlink_target": "" }
 #pragma once #include <aws/elasticmapreduce/EMR_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/elasticmapreduce/model/HadoopStepConfig.h> #include <aws/elasticmapreduce/model/ActionOnFailure.h> #include <aws/elasticmapreduce/model/StepStatus.h> #include <utility> namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace EMR { namespace Model { /** * <p>This represents a step in a cluster.</p><p><h3>See Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Step">AWS * API Reference</a></p> */ class AWS_EMR_API Step { public: Step(); Step(Aws::Utils::Json::JsonView jsonValue); Step& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** * <p>The identifier of the cluster step.</p> */ inline const Aws::String& GetId() const{ return m_id; } /** * <p>The identifier of the cluster step.</p> */ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** * <p>The identifier of the cluster step.</p> */ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** * <p>The identifier of the cluster step.</p> */ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** * <p>The identifier of the cluster step.</p> */ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** * <p>The identifier of the cluster step.</p> */ inline Step& WithId(const Aws::String& value) { SetId(value); return *this;} /** * <p>The identifier of the cluster step.</p> */ inline Step& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** * <p>The identifier of the cluster step.</p> */ inline Step& WithId(const char* value) { SetId(value); return *this;} /** * <p>The name of the cluster step.</p> */ inline const Aws::String& GetName() const{ return m_name; } /** * <p>The name of the cluster step.</p> */ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** * <p>The name of the cluster step.</p> */ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** * <p>The name of the cluster step.</p> */ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** * <p>The name of the cluster step.</p> */ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** * <p>The name of the cluster step.</p> */ inline Step& WithName(const Aws::String& value) { SetName(value); return *this;} /** * <p>The name of the cluster step.</p> */ inline Step& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** * <p>The name of the cluster step.</p> */ inline Step& WithName(const char* value) { SetName(value); return *this;} /** * <p>The Hadoop job configuration of the cluster step.</p> */ inline const HadoopStepConfig& GetConfig() const{ return m_config; } /** * <p>The Hadoop job configuration of the cluster step.</p> */ inline bool ConfigHasBeenSet() const { return m_configHasBeenSet; } /** * <p>The Hadoop job configuration of the cluster step.</p> */ inline void SetConfig(const HadoopStepConfig& value) { m_configHasBeenSet = true; m_config = value; } /** * <p>The Hadoop job configuration of the cluster step.</p> */ inline void SetConfig(HadoopStepConfig&& value) { m_configHasBeenSet = true; m_config = std::move(value); } /** * <p>The Hadoop job configuration of the cluster step.</p> */ inline Step& WithConfig(const HadoopStepConfig& value) { SetConfig(value); return *this;} /** * <p>The Hadoop job configuration of the cluster step.</p> */ inline Step& WithConfig(HadoopStepConfig&& value) { SetConfig(std::move(value)); return *this;} /** * <p>The action to take when the cluster step fails. Possible values are * <code>TERMINATE_CLUSTER</code>, <code>CANCEL_AND_WAIT</code>, and * <code>CONTINUE</code>. <code>TERMINATE_JOB_FLOW</code> is provided for backward * compatibility. We recommend using <code>TERMINATE_CLUSTER</code> instead.</p> * <p>If a cluster's <code>StepConcurrencyLevel</code> is greater than * <code>1</code>, do not use <code>AddJobFlowSteps</code> to submit a step with * this parameter set to <code>CANCEL_AND_WAIT</code> or * <code>TERMINATE_CLUSTER</code>. The step is not submitted and the action fails * with a message that the <code>ActionOnFailure</code> setting is not valid.</p> * <p>If you change a cluster's <code>StepConcurrencyLevel</code> to be greater * than 1 while a step is running, the <code>ActionOnFailure</code> parameter may * not behave as you expect. In this case, for a step that fails with this * parameter set to <code>CANCEL_AND_WAIT</code>, pending steps and the running * step are not canceled; for a step that fails with this parameter set to * <code>TERMINATE_CLUSTER</code>, the cluster does not terminate.</p> */ inline const ActionOnFailure& GetActionOnFailure() const{ return m_actionOnFailure; } /** * <p>The action to take when the cluster step fails. Possible values are * <code>TERMINATE_CLUSTER</code>, <code>CANCEL_AND_WAIT</code>, and * <code>CONTINUE</code>. <code>TERMINATE_JOB_FLOW</code> is provided for backward * compatibility. We recommend using <code>TERMINATE_CLUSTER</code> instead.</p> * <p>If a cluster's <code>StepConcurrencyLevel</code> is greater than * <code>1</code>, do not use <code>AddJobFlowSteps</code> to submit a step with * this parameter set to <code>CANCEL_AND_WAIT</code> or * <code>TERMINATE_CLUSTER</code>. The step is not submitted and the action fails * with a message that the <code>ActionOnFailure</code> setting is not valid.</p> * <p>If you change a cluster's <code>StepConcurrencyLevel</code> to be greater * than 1 while a step is running, the <code>ActionOnFailure</code> parameter may * not behave as you expect. In this case, for a step that fails with this * parameter set to <code>CANCEL_AND_WAIT</code>, pending steps and the running * step are not canceled; for a step that fails with this parameter set to * <code>TERMINATE_CLUSTER</code>, the cluster does not terminate.</p> */ inline bool ActionOnFailureHasBeenSet() const { return m_actionOnFailureHasBeenSet; } /** * <p>The action to take when the cluster step fails. Possible values are * <code>TERMINATE_CLUSTER</code>, <code>CANCEL_AND_WAIT</code>, and * <code>CONTINUE</code>. <code>TERMINATE_JOB_FLOW</code> is provided for backward * compatibility. We recommend using <code>TERMINATE_CLUSTER</code> instead.</p> * <p>If a cluster's <code>StepConcurrencyLevel</code> is greater than * <code>1</code>, do not use <code>AddJobFlowSteps</code> to submit a step with * this parameter set to <code>CANCEL_AND_WAIT</code> or * <code>TERMINATE_CLUSTER</code>. The step is not submitted and the action fails * with a message that the <code>ActionOnFailure</code> setting is not valid.</p> * <p>If you change a cluster's <code>StepConcurrencyLevel</code> to be greater * than 1 while a step is running, the <code>ActionOnFailure</code> parameter may * not behave as you expect. In this case, for a step that fails with this * parameter set to <code>CANCEL_AND_WAIT</code>, pending steps and the running * step are not canceled; for a step that fails with this parameter set to * <code>TERMINATE_CLUSTER</code>, the cluster does not terminate.</p> */ inline void SetActionOnFailure(const ActionOnFailure& value) { m_actionOnFailureHasBeenSet = true; m_actionOnFailure = value; } /** * <p>The action to take when the cluster step fails. Possible values are * <code>TERMINATE_CLUSTER</code>, <code>CANCEL_AND_WAIT</code>, and * <code>CONTINUE</code>. <code>TERMINATE_JOB_FLOW</code> is provided for backward * compatibility. We recommend using <code>TERMINATE_CLUSTER</code> instead.</p> * <p>If a cluster's <code>StepConcurrencyLevel</code> is greater than * <code>1</code>, do not use <code>AddJobFlowSteps</code> to submit a step with * this parameter set to <code>CANCEL_AND_WAIT</code> or * <code>TERMINATE_CLUSTER</code>. The step is not submitted and the action fails * with a message that the <code>ActionOnFailure</code> setting is not valid.</p> * <p>If you change a cluster's <code>StepConcurrencyLevel</code> to be greater * than 1 while a step is running, the <code>ActionOnFailure</code> parameter may * not behave as you expect. In this case, for a step that fails with this * parameter set to <code>CANCEL_AND_WAIT</code>, pending steps and the running * step are not canceled; for a step that fails with this parameter set to * <code>TERMINATE_CLUSTER</code>, the cluster does not terminate.</p> */ inline void SetActionOnFailure(ActionOnFailure&& value) { m_actionOnFailureHasBeenSet = true; m_actionOnFailure = std::move(value); } /** * <p>The action to take when the cluster step fails. Possible values are * <code>TERMINATE_CLUSTER</code>, <code>CANCEL_AND_WAIT</code>, and * <code>CONTINUE</code>. <code>TERMINATE_JOB_FLOW</code> is provided for backward * compatibility. We recommend using <code>TERMINATE_CLUSTER</code> instead.</p> * <p>If a cluster's <code>StepConcurrencyLevel</code> is greater than * <code>1</code>, do not use <code>AddJobFlowSteps</code> to submit a step with * this parameter set to <code>CANCEL_AND_WAIT</code> or * <code>TERMINATE_CLUSTER</code>. The step is not submitted and the action fails * with a message that the <code>ActionOnFailure</code> setting is not valid.</p> * <p>If you change a cluster's <code>StepConcurrencyLevel</code> to be greater * than 1 while a step is running, the <code>ActionOnFailure</code> parameter may * not behave as you expect. In this case, for a step that fails with this * parameter set to <code>CANCEL_AND_WAIT</code>, pending steps and the running * step are not canceled; for a step that fails with this parameter set to * <code>TERMINATE_CLUSTER</code>, the cluster does not terminate.</p> */ inline Step& WithActionOnFailure(const ActionOnFailure& value) { SetActionOnFailure(value); return *this;} /** * <p>The action to take when the cluster step fails. Possible values are * <code>TERMINATE_CLUSTER</code>, <code>CANCEL_AND_WAIT</code>, and * <code>CONTINUE</code>. <code>TERMINATE_JOB_FLOW</code> is provided for backward * compatibility. We recommend using <code>TERMINATE_CLUSTER</code> instead.</p> * <p>If a cluster's <code>StepConcurrencyLevel</code> is greater than * <code>1</code>, do not use <code>AddJobFlowSteps</code> to submit a step with * this parameter set to <code>CANCEL_AND_WAIT</code> or * <code>TERMINATE_CLUSTER</code>. The step is not submitted and the action fails * with a message that the <code>ActionOnFailure</code> setting is not valid.</p> * <p>If you change a cluster's <code>StepConcurrencyLevel</code> to be greater * than 1 while a step is running, the <code>ActionOnFailure</code> parameter may * not behave as you expect. In this case, for a step that fails with this * parameter set to <code>CANCEL_AND_WAIT</code>, pending steps and the running * step are not canceled; for a step that fails with this parameter set to * <code>TERMINATE_CLUSTER</code>, the cluster does not terminate.</p> */ inline Step& WithActionOnFailure(ActionOnFailure&& value) { SetActionOnFailure(std::move(value)); return *this;} /** * <p>The current execution status details of the cluster step.</p> */ inline const StepStatus& GetStatus() const{ return m_status; } /** * <p>The current execution status details of the cluster step.</p> */ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** * <p>The current execution status details of the cluster step.</p> */ inline void SetStatus(const StepStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** * <p>The current execution status details of the cluster step.</p> */ inline void SetStatus(StepStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** * <p>The current execution status details of the cluster step.</p> */ inline Step& WithStatus(const StepStatus& value) { SetStatus(value); return *this;} /** * <p>The current execution status details of the cluster step.</p> */ inline Step& WithStatus(StepStatus&& value) { SetStatus(std::move(value)); return *this;} private: Aws::String m_id; bool m_idHasBeenSet; Aws::String m_name; bool m_nameHasBeenSet; HadoopStepConfig m_config; bool m_configHasBeenSet; ActionOnFailure m_actionOnFailure; bool m_actionOnFailureHasBeenSet; StepStatus m_status; bool m_statusHasBeenSet; }; } // namespace Model } // namespace EMR } // namespace Aws
{ "content_hash": "fdbf20ad3a5e79f7b8caf3f6332a7339", "timestamp": "", "source": "github", "line_count": 318, "max_line_length": 137, "avg_line_length": 43.0314465408805, "alnum_prop": 0.6679333528208127, "repo_name": "cedral/aws-sdk-cpp", "id": "f5a903889d1f0750221e744a9817ee0e9053a10c", "size": "13803", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "aws-cpp-sdk-elasticmapreduce/include/aws/elasticmapreduce/model/Step.h", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C", "bytes": "294220" }, { "name": "C++", "bytes": "428637022" }, { "name": "CMake", "bytes": "862025" }, { "name": "Dockerfile", "bytes": "11688" }, { "name": "HTML", "bytes": "7904" }, { "name": "Java", "bytes": "352201" }, { "name": "Python", "bytes": "106761" }, { "name": "Shell", "bytes": "10891" } ], "symlink_target": "" }
ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in Linnaea 12:414. 1838 #### Original name null ### Remarks null
{ "content_hash": "f11532ff70a4c313ffb5b63359627dfe", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 39, "avg_line_length": 11.538461538461538, "alnum_prop": 0.7, "repo_name": "mdoering/backbone", "id": "701fd586659963bba8d8cc427d31c1fbe4eec26b", "size": "208", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "life/Plantae/Magnoliophyta/Magnoliopsida/Cucurbitales/Cucurbitaceae/Citrullus/Citrullus colocynthis/README.md", "mode": "33188", "license": "apache-2.0", "language": [], "symlink_target": "" }
using Cofoundry.Core; using Cofoundry.Domain; using Hangfire; using Hangfire.Dashboard; using Microsoft.AspNetCore.Builder; namespace Cofoundry.Plugins.BackgroundTasks.Hangfire; /// <summary> /// Used to initialize the hangfire server. Override this to fully /// customize the server initialization process. /// </summary> public class HangfireServerInitializer : IHangfireServerInitializer { private readonly HangfireSettings _hangfireSettings; private readonly AdminSettings _adminSettings; public HangfireServerInitializer( HangfireSettings hangfireSettings, AdminSettings adminSettings ) { _hangfireSettings = hangfireSettings; _adminSettings = adminSettings; } public void Initialize(IApplicationBuilder app) { // Allow hangfire to be disabled, e.g. when connecting from dev to a production db. if (_hangfireSettings.Disabled) return; app.UseHangfireServer(); if (_hangfireSettings.EnableHangfireDashboard && !_adminSettings.Disabled) { var adminPath = RelativePathHelper.Combine(_adminSettings.DirectoryName, "hangfire"); app.UseHangfireDashboard(adminPath, new DashboardOptions { Authorization = new IDashboardAuthorizationFilter[] { new HangfireDashboardAuthorizationFilter() }, AppPath = "/" + _adminSettings.DirectoryName }); } } }
{ "content_hash": "7b9fa076c8341919a94ae790436b6599", "timestamp": "", "source": "github", "line_count": 44, "max_line_length": 115, "avg_line_length": 32.93181818181818, "alnum_prop": 0.6984126984126984, "repo_name": "cofoundry-cms/Cofoundry.Plugins.BackgroundTasks.Hangfire", "id": "f3915d432aecea8b83af2b4112db01b060077ee6", "size": "1451", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/Cofoundry.Plugins.BackgroundTasks.Hangfire/Startup/HangfireServerInitializer.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "22701" }, { "name": "HTML", "bytes": "1455" }, { "name": "PowerShell", "bytes": "8549" } ], "symlink_target": "" }
// Copyright 2013 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. #include "chrome/browser/automation/testing_automation_provider.h" #include <map> #include <set> #include <string> #include <vector> #include "base/bind.h" #include "base/bind_helpers.h" #include "base/command_line.h" #include "base/files/file_path.h" #include "base/json/json_reader.h" #include "base/json/json_writer.h" #include "base/json/string_escape.h" #include "base/path_service.h" #include "base/prefs/pref_service.h" #include "base/process.h" #include "base/process_util.h" #include "base/sequenced_task_runner.h" #include "base/stringprintf.h" #include "base/threading/thread_restrictions.h" #include "base/time.h" #include "base/utf_string_conversions.h" #include "chrome/app/chrome_command_ids.h" #include "chrome/browser/autocomplete/autocomplete_controller.h" #include "chrome/browser/autocomplete/autocomplete_match.h" #include "chrome/browser/autocomplete/autocomplete_result.h" #include "chrome/browser/automation/automation_browser_tracker.h" #include "chrome/browser/automation/automation_provider_json.h" #include "chrome/browser/automation/automation_provider_list.h" #include "chrome/browser/automation/automation_provider_observers.h" #include "chrome/browser/automation/automation_tab_tracker.h" #include "chrome/browser/automation/automation_util.h" #include "chrome/browser/automation/automation_window_tracker.h" #include "chrome/browser/bookmarks/bookmark_model.h" #include "chrome/browser/bookmarks/bookmark_model_factory.h" #include "chrome/browser/bookmarks/bookmark_storage.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/browser_shutdown.h" #include "chrome/browser/content_settings/host_content_settings_map.h" #include "chrome/browser/devtools/devtools_window.h" #include "chrome/browser/download/download_prefs.h" #include "chrome/browser/download/download_service.h" #include "chrome/browser/download/download_service_factory.h" #include "chrome/browser/download/download_shelf.h" #include "chrome/browser/download/save_package_file_picker.h" #include "chrome/browser/extensions/browser_action_test_util.h" #include "chrome/browser/extensions/crx_installer.h" #include "chrome/browser/extensions/extension_action.h" #include "chrome/browser/extensions/extension_action_manager.h" #include "chrome/browser/extensions/extension_host.h" #include "chrome/browser/extensions/extension_process_manager.h" #include "chrome/browser/extensions/extension_service.h" #include "chrome/browser/extensions/extension_system.h" #include "chrome/browser/extensions/extension_tab_util.h" #include "chrome/browser/extensions/unpacked_installer.h" #include "chrome/browser/extensions/updater/extension_updater.h" #include "chrome/browser/history/history_service_factory.h" #include "chrome/browser/history/top_sites.h" #include "chrome/browser/importer/importer_host.h" #include "chrome/browser/importer/importer_list.h" #include "chrome/browser/infobars/confirm_infobar_delegate.h" #include "chrome/browser/infobars/infobar_service.h" #include "chrome/browser/lifetime/application_lifetime.h" #include "chrome/browser/notifications/balloon.h" #include "chrome/browser/notifications/balloon_collection.h" #include "chrome/browser/notifications/balloon_notification_ui_manager.h" #include "chrome/browser/notifications/notification.h" #include "chrome/browser/password_manager/password_store.h" #include "chrome/browser/password_manager/password_store_change.h" #include "chrome/browser/password_manager/password_store_factory.h" #include "chrome/browser/platform_util.h" #include "chrome/browser/plugins/plugin_prefs.h" #include "chrome/browser/printing/print_preview_dialog_controller.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/profiles/profile_info_cache.h" #include "chrome/browser/profiles/profile_manager.h" #include "chrome/browser/search_engines/template_url.h" #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/browser/search_engines/template_url_service_factory.h" #include "chrome/browser/sessions/session_service_factory.h" #include "chrome/browser/sessions/session_tab_helper.h" #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog.h" #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.h" #include "chrome/browser/ui/app_modal_dialogs/javascript_app_modal_dialog.h" #include "chrome/browser/ui/app_modal_dialogs/native_app_modal_dialog.h" #include "chrome/browser/ui/bookmarks/bookmark_bar.h" #include "chrome/browser/ui/browser_commands.h" #include "chrome/browser/ui/browser_finder.h" #include "chrome/browser/ui/browser_iterator.h" #include "chrome/browser/ui/browser_list.h" #include "chrome/browser/ui/browser_tabstrip.h" #include "chrome/browser/ui/browser_window.h" #include "chrome/browser/ui/extensions/application_launch.h" #include "chrome/browser/ui/find_bar/find_bar.h" #include "chrome/browser/ui/find_bar/find_bar_controller.h" #include "chrome/browser/ui/fullscreen/fullscreen_controller.h" #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h" #include "chrome/browser/ui/host_desktop.h" #include "chrome/browser/ui/login/login_prompt.h" #include "chrome/browser/ui/media_stream_infobar_delegate.h" #include "chrome/browser/ui/omnibox/location_bar.h" #include "chrome/browser/ui/omnibox/omnibox_edit_model.h" #include "chrome/browser/ui/omnibox/omnibox_view.h" #include "chrome/browser/ui/search_engines/keyword_editor_controller.h" #include "chrome/browser/ui/startup/startup_types.h" #include "chrome/common/automation_constants.h" #include "chrome/common/automation_events.h" #include "chrome/common/automation_id.h" #include "chrome/common/automation_messages.h" #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_notification_types.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/extensions/background_info.h" #include "chrome/common/extensions/extension.h" #include "chrome/common/extensions/manifest_url_handler.h" #include "chrome/common/extensions/permissions/permission_set.h" #include "chrome/common/pref_names.h" #include "chrome/common/render_messages.h" #include "content/public/browser/browser_child_process_host_iterator.h" #include "content/public/browser/child_process_data.h" #include "content/public/browser/favicon_status.h" #include "content/public/browser/geolocation.h" #include "content/public/browser/interstitial_page.h" #include "content/public/browser/interstitial_page_delegate.h" #include "content/public/browser/navigation_entry.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/plugin_service.h" #include "content/public/browser/render_process_host.h" #include "content/public/browser/render_view_host.h" #include "content/public/browser/render_widget_host_view.h" #include "content/public/browser/web_contents.h" #include "content/public/common/child_process_host.h" #include "content/public/common/common_param_traits.h" #include "content/public/common/geoposition.h" #include "content/public/common/ssl_status.h" #include "extensions/browser/view_type_utils.h" #include "extensions/common/url_pattern.h" #include "extensions/common/url_pattern_set.h" #include "net/cookies/cookie_store.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" #include "ui/base/events/event_constants.h" #include "ui/base/keycodes/keyboard_codes.h" #include "ui/base/ui_base_types.h" #include "webkit/glue/webdropdata.h" #include "webkit/plugins/webplugininfo.h" #if defined(ENABLE_CONFIGURATION_POLICY) #include "chrome/browser/policy/policy_service.h" #endif #if defined(OS_CHROMEOS) #include "chromeos/dbus/dbus_thread_manager.h" #endif #if defined(OS_MACOSX) #include "base/mach_ipc_mac.h" #endif #if !defined(NO_TCMALLOC) && (defined(OS_LINUX) || defined(OS_CHROMEOS)) #include "third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h" #endif // !defined(NO_TCMALLOC) && (defined(OS_LINUX) || defined(OS_CHROMEOS)) using automation::Error; using automation::ErrorCode; using automation_util::SendErrorIfModalDialogActive; using content::BrowserChildProcessHostIterator; using content::BrowserContext; using content::BrowserThread; using content::ChildProcessHost; using content::DownloadItem; using content::DownloadManager; using content::InterstitialPage; using content::NativeWebKeyboardEvent; using content::NavigationController; using content::NavigationEntry; using content::OpenURLParams; using content::PluginService; using content::Referrer; using content::RenderViewHost; using content::SSLStatus; using content::WebContents; using extensions::Extension; using extensions::ExtensionActionManager; using extensions::ExtensionList; using extensions::Manifest; namespace { // Helper to reply asynchronously if |automation| is still valid. void SendSuccessReply(base::WeakPtr<AutomationProvider> automation, IPC::Message* reply_message) { if (automation) AutomationJSONReply(automation.get(), reply_message).SendSuccess(NULL); } // Helper to process the result of CanEnablePlugin. void DidEnablePlugin(base::WeakPtr<AutomationProvider> automation, IPC::Message* reply_message, const base::FilePath::StringType& path, const std::string& error_msg, bool did_enable) { if (did_enable) { SendSuccessReply(automation, reply_message); } else { if (automation) { AutomationJSONReply(automation.get(), reply_message).SendError( base::StringPrintf(error_msg.c_str(), path.c_str())); } } } // Helper to resolve the overloading of PostTask. void PostTask(BrowserThread::ID id, const base::Closure& callback) { BrowserThread::PostTask(id, FROM_HERE, callback); } class AutomationInterstitialPage : public content::InterstitialPageDelegate { public: AutomationInterstitialPage(WebContents* tab, const GURL& url, const std::string& contents) : contents_(contents) { interstitial_page_ = InterstitialPage::Create(tab, true, url, this); interstitial_page_->Show(); } virtual std::string GetHTMLContents() OVERRIDE { return contents_; } private: const std::string contents_; InterstitialPage* interstitial_page_; // Owns us. DISALLOW_COPY_AND_ASSIGN(AutomationInterstitialPage); }; } // namespace const int TestingAutomationProvider::kSynchronousCommands[] = { IDC_HOME, IDC_SELECT_NEXT_TAB, IDC_SELECT_PREVIOUS_TAB, IDC_SHOW_BOOKMARK_MANAGER, }; TestingAutomationProvider::TestingAutomationProvider(Profile* profile) : AutomationProvider(profile) #if defined(OS_CHROMEOS) , power_manager_observer_(NULL) #endif { BrowserList::AddObserver(this); registrar_.Add(this, chrome::NOTIFICATION_SESSION_END, content::NotificationService::AllSources()); #if defined(OS_CHROMEOS) AddChromeosObservers(); #endif } TestingAutomationProvider::~TestingAutomationProvider() { #if defined(OS_CHROMEOS) RemoveChromeosObservers(); #endif BrowserList::RemoveObserver(this); } IPC::Channel::Mode TestingAutomationProvider::GetChannelMode( bool use_named_interface) { if (use_named_interface) #if defined(OS_POSIX) return IPC::Channel::MODE_OPEN_NAMED_SERVER; #else return IPC::Channel::MODE_NAMED_SERVER; #endif else return IPC::Channel::MODE_CLIENT; } void TestingAutomationProvider::OnBrowserAdded(Browser* browser) { } void TestingAutomationProvider::OnBrowserRemoved(Browser* browser) { #if !defined(OS_CHROMEOS) && !defined(OS_MACOSX) // For backwards compatibility with the testing automation interface, we // want the automation provider (and hence the process) to go away when the // last browser goes away. // The automation layer doesn't support non-native desktops. if (BrowserList::GetInstance(chrome::HOST_DESKTOP_TYPE_NATIVE)->empty() && !CommandLine::ForCurrentProcess()->HasSwitch( switches::kKeepAliveForTest)) { // If you change this, update Observer for chrome::SESSION_END // below. MessageLoop::current()->PostTask( FROM_HERE, base::Bind(&TestingAutomationProvider::OnRemoveProvider, this)); } #endif // !defined(OS_CHROMEOS) && !defined(OS_MACOSX) } void TestingAutomationProvider::OnSourceProfilesLoaded() { DCHECK_NE(static_cast<ImporterList*>(NULL), importer_list_.get()); // Get the correct profile based on the browser that the user provided. importer::SourceProfile source_profile; size_t i = 0; size_t importers_count = importer_list_->count(); for ( ; i < importers_count; ++i) { importer::SourceProfile profile = importer_list_->GetSourceProfileAt(i); if (profile.importer_name == import_settings_data_.browser_name) { source_profile = profile; break; } } // If we made it to the end of the loop, then the input was bad. if (i == importers_count) { AutomationJSONReply(this, import_settings_data_.reply_message) .SendError("Invalid browser name string found."); return; } scoped_refptr<ImporterHost> importer_host(new ImporterHost); importer_host->SetObserver( new AutomationProviderImportSettingsObserver( this, import_settings_data_.reply_message)); Profile* target_profile = import_settings_data_.browser->profile(); importer_host->StartImportSettings(source_profile, target_profile, import_settings_data_.import_items, new ProfileWriter(target_profile), import_settings_data_.first_run); } void TestingAutomationProvider::Observe( int type, const content::NotificationSource& source, const content::NotificationDetails& details) { DCHECK(type == chrome::NOTIFICATION_SESSION_END); // OnBrowserRemoved does a ReleaseLater. When session end is received we exit // before the task runs resulting in this object not being deleted. This // Release balance out the Release scheduled by OnBrowserRemoved. Release(); } bool TestingAutomationProvider::OnMessageReceived( const IPC::Message& message) { base::ThreadRestrictions::ScopedAllowWait allow_wait; bool handled = true; bool deserialize_success = true; IPC_BEGIN_MESSAGE_MAP_EX(TestingAutomationProvider, message, deserialize_success) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_CloseBrowser, CloseBrowser) IPC_MESSAGE_HANDLER(AutomationMsg_ActivateTab, ActivateTab) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_AppendTab, AppendTab) IPC_MESSAGE_HANDLER(AutomationMsg_GetMachPortCount, GetMachPortCount) IPC_MESSAGE_HANDLER(AutomationMsg_ActiveTabIndex, GetActiveTabIndex) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_CloseTab, CloseTab) IPC_MESSAGE_HANDLER(AutomationMsg_GetCookies, GetCookies) IPC_MESSAGE_HANDLER_DELAY_REPLY( AutomationMsg_NavigateToURLBlockUntilNavigationsComplete, NavigateToURLBlockUntilNavigationsComplete) IPC_MESSAGE_HANDLER(AutomationMsg_NavigationAsync, NavigationAsync) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_Reload, Reload) IPC_MESSAGE_HANDLER(AutomationMsg_BrowserWindowCount, GetBrowserWindowCount) IPC_MESSAGE_HANDLER(AutomationMsg_NormalBrowserWindowCount, GetNormalBrowserWindowCount) IPC_MESSAGE_HANDLER(AutomationMsg_BrowserWindow, GetBrowserWindow) IPC_MESSAGE_HANDLER(AutomationMsg_WindowExecuteCommandAsync, ExecuteBrowserCommandAsync) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_WindowExecuteCommand, ExecuteBrowserCommand) IPC_MESSAGE_HANDLER(AutomationMsg_TerminateSession, TerminateSession) IPC_MESSAGE_HANDLER(AutomationMsg_WindowViewBounds, WindowGetViewBounds) IPC_MESSAGE_HANDLER(AutomationMsg_SetWindowBounds, SetWindowBounds) IPC_MESSAGE_HANDLER(AutomationMsg_TabCount, GetTabCount) IPC_MESSAGE_HANDLER(AutomationMsg_Type, GetType) IPC_MESSAGE_HANDLER(AutomationMsg_Tab, GetTab) IPC_MESSAGE_HANDLER(AutomationMsg_TabTitle, GetTabTitle) IPC_MESSAGE_HANDLER(AutomationMsg_TabIndex, GetTabIndex) IPC_MESSAGE_HANDLER(AutomationMsg_TabURL, GetTabURL) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_DomOperation, ExecuteJavascript) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_OpenNewBrowserWindowOfType, OpenNewBrowserWindowOfType) IPC_MESSAGE_HANDLER(AutomationMsg_WindowForBrowser, GetWindowForBrowser) IPC_MESSAGE_HANDLER(AutomationMsg_GetMetricEventDuration, GetMetricEventDuration) IPC_MESSAGE_HANDLER(AutomationMsg_BringBrowserToFront, BringBrowserToFront) IPC_MESSAGE_HANDLER(AutomationMsg_FindWindowVisibility, GetFindWindowVisibility) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_WaitForBookmarkModelToLoad, WaitForBookmarkModelToLoad) IPC_MESSAGE_HANDLER_DELAY_REPLY( AutomationMsg_WaitForBrowserWindowCountToBecome, WaitForBrowserWindowCountToBecome) IPC_MESSAGE_HANDLER_DELAY_REPLY( AutomationMsg_GoBackBlockUntilNavigationsComplete, GoBackBlockUntilNavigationsComplete) IPC_MESSAGE_HANDLER_DELAY_REPLY( AutomationMsg_GoForwardBlockUntilNavigationsComplete, GoForwardBlockUntilNavigationsComplete) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_SendJSONRequest, SendJSONRequestWithBrowserIndex) IPC_MESSAGE_HANDLER_DELAY_REPLY( AutomationMsg_SendJSONRequestWithBrowserHandle, SendJSONRequestWithBrowserHandle) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_WaitForTabCountToBecome, WaitForTabCountToBecome) IPC_MESSAGE_HANDLER_DELAY_REPLY(AutomationMsg_WaitForInfoBarCount, WaitForInfoBarCount) IPC_MESSAGE_HANDLER_DELAY_REPLY( AutomationMsg_WaitForProcessLauncherThreadToGoIdle, WaitForProcessLauncherThreadToGoIdle) IPC_MESSAGE_UNHANDLED( handled = AutomationProvider::OnMessageReceived(message)) IPC_END_MESSAGE_MAP_EX() if (!deserialize_success) OnMessageDeserializationFailure(); return handled; } void TestingAutomationProvider::OnChannelError() { if (!reinitialize_on_channel_error_ && browser_shutdown::GetShutdownType() == browser_shutdown::NOT_VALID) { chrome::AttemptExit(); } AutomationProvider::OnChannelError(); } void TestingAutomationProvider::CloseBrowser(int browser_handle, IPC::Message* reply_message) { if (!browser_tracker_->ContainsHandle(browser_handle)) return; Browser* browser = browser_tracker_->GetResource(browser_handle); new BrowserClosedNotificationObserver(browser, this, reply_message, false); browser->window()->Close(); } void TestingAutomationProvider::ActivateTab(int handle, int at_index, int* status) { *status = -1; if (browser_tracker_->ContainsHandle(handle) && at_index > -1) { Browser* browser = browser_tracker_->GetResource(handle); if (at_index >= 0 && at_index < browser->tab_strip_model()->count()) { browser->tab_strip_model()->ActivateTabAt(at_index, true); *status = 0; } } } void TestingAutomationProvider::AppendTab(int handle, const GURL& url, IPC::Message* reply_message) { int append_tab_response = -1; // -1 is the error code TabAppendedNotificationObserver* observer = NULL; if (browser_tracker_->ContainsHandle(handle)) { Browser* browser = browser_tracker_->GetResource(handle); observer = new TabAppendedNotificationObserver(browser, this, reply_message, false); WebContents* contents = chrome::AddSelectedTabWithURL(browser, url, content::PAGE_TRANSITION_TYPED); if (contents) { append_tab_response = GetIndexForNavigationController( &contents->GetController(), browser); } } if (append_tab_response < 0) { // Appending tab failed. Clean up and send failure response. if (observer) delete observer; AutomationMsg_AppendTab::WriteReplyParams(reply_message, append_tab_response); Send(reply_message); } } void TestingAutomationProvider::GetMachPortCount(int* port_count) { #if defined(OS_MACOSX) base::mac::GetNumberOfMachPorts(mach_task_self(), port_count); #else *port_count = 0; #endif } void TestingAutomationProvider::GetActiveTabIndex(int handle, int* active_tab_index) { *active_tab_index = -1; // -1 is the error code if (browser_tracker_->ContainsHandle(handle)) { Browser* browser = browser_tracker_->GetResource(handle); *active_tab_index = browser->tab_strip_model()->active_index(); } } void TestingAutomationProvider::CloseTab(int tab_handle, bool wait_until_closed, IPC::Message* reply_message) { if (tab_tracker_->ContainsHandle(tab_handle)) { NavigationController* controller = tab_tracker_->GetResource(tab_handle); Browser* browser = chrome::FindBrowserWithWebContents( controller->GetWebContents()); DCHECK(browser); new TabClosedNotificationObserver(this, wait_until_closed, reply_message, false); chrome::CloseWebContents(browser, controller->GetWebContents(), false); return; } AutomationMsg_CloseTab::WriteReplyParams(reply_message, false); Send(reply_message); } void TestingAutomationProvider::GetCookies(const GURL& url, int handle, int* value_size, std::string* value) { WebContents* contents = tab_tracker_->ContainsHandle(handle) ? tab_tracker_->GetResource(handle)->GetWebContents() : NULL; automation_util::GetCookies(url, contents, value_size, value); } void TestingAutomationProvider::NavigateToURLBlockUntilNavigationsComplete( int handle, const GURL& url, int number_of_navigations, IPC::Message* reply_message) { if (tab_tracker_->ContainsHandle(handle)) { NavigationController* tab = tab_tracker_->GetResource(handle); // Simulate what a user would do. Activate the tab and then navigate. // We could allow navigating in a background tab in future. Browser* browser = FindAndActivateTab(tab); if (browser) { new NavigationNotificationObserver(tab, this, reply_message, number_of_navigations, false, false); // TODO(darin): avoid conversion to GURL. OpenURLParams params( url, Referrer(), CURRENT_TAB, content::PageTransitionFromInt( content::PAGE_TRANSITION_TYPED | content::PAGE_TRANSITION_FROM_ADDRESS_BAR), false); browser->OpenURL(params); return; } } AutomationMsg_NavigateToURLBlockUntilNavigationsComplete::WriteReplyParams( reply_message, AUTOMATION_MSG_NAVIGATION_ERROR); Send(reply_message); } void TestingAutomationProvider::NavigationAsync(int handle, const GURL& url, bool* status) { *status = false; if (tab_tracker_->ContainsHandle(handle)) { NavigationController* tab = tab_tracker_->GetResource(handle); // Simulate what a user would do. Activate the tab and then navigate. // We could allow navigating in a background tab in future. Browser* browser = FindAndActivateTab(tab); if (browser) { // Don't add any listener unless a callback mechanism is desired. // TODO(vibhor): Do this if such a requirement arises in future. OpenURLParams params( url, Referrer(), CURRENT_TAB, content::PageTransitionFromInt( content::PAGE_TRANSITION_TYPED | content::PAGE_TRANSITION_FROM_ADDRESS_BAR), false); browser->OpenURL(params); *status = true; } } } void TestingAutomationProvider::Reload(int handle, IPC::Message* reply_message) { if (tab_tracker_->ContainsHandle(handle)) { NavigationController* tab = tab_tracker_->GetResource(handle); Browser* browser = FindAndActivateTab(tab); if (chrome::IsCommandEnabled(browser, IDC_RELOAD)) { new NavigationNotificationObserver( tab, this, reply_message, 1, false, false); chrome::ExecuteCommand(browser, IDC_RELOAD); return; } } AutomationMsg_Reload::WriteReplyParams( reply_message, AUTOMATION_MSG_NAVIGATION_ERROR); Send(reply_message); } void TestingAutomationProvider::GetBrowserWindowCount(int* window_count) { // The automation layer doesn't support non-native desktops. *window_count = static_cast<int>(BrowserList::GetInstance( chrome::HOST_DESKTOP_TYPE_NATIVE)->size()); } void TestingAutomationProvider::GetNormalBrowserWindowCount(int* window_count) { *window_count = static_cast<int>(chrome::GetTabbedBrowserCount( profile_, chrome::HOST_DESKTOP_TYPE_NATIVE)); } void TestingAutomationProvider::GetBrowserWindow(int index, int* handle) { *handle = 0; Browser* browser = automation_util::GetBrowserAt(index); if (browser) *handle = browser_tracker_->Add(browser); } void TestingAutomationProvider::ExecuteBrowserCommandAsync(int handle, int command, bool* success) { *success = false; if (!browser_tracker_->ContainsHandle(handle)) { LOG(WARNING) << "Browser tracker does not contain handle: " << handle; return; } Browser* browser = browser_tracker_->GetResource(handle); if (!chrome::SupportsCommand(browser, command)) { LOG(WARNING) << "Browser does not support command: " << command; return; } if (!chrome::IsCommandEnabled(browser, command)) { LOG(WARNING) << "Browser command not enabled: " << command; return; } chrome::ExecuteCommand(browser, command); *success = true; } void TestingAutomationProvider::ExecuteBrowserCommand( int handle, int command, IPC::Message* reply_message) { if (browser_tracker_->ContainsHandle(handle)) { Browser* browser = browser_tracker_->GetResource(handle); if (chrome::SupportsCommand(browser, command) && chrome::IsCommandEnabled(browser, command)) { // First check if we can handle the command without using an observer. for (size_t i = 0; i < arraysize(kSynchronousCommands); i++) { if (command == kSynchronousCommands[i]) { chrome::ExecuteCommand(browser, command); AutomationMsg_WindowExecuteCommand::WriteReplyParams(reply_message, true); Send(reply_message); return; } } // Use an observer if we have one, otherwise fail. if (ExecuteBrowserCommandObserver::CreateAndRegisterObserver( this, browser, command, reply_message, false)) { chrome::ExecuteCommand(browser, command); return; } } } AutomationMsg_WindowExecuteCommand::WriteReplyParams(reply_message, false); Send(reply_message); } void TestingAutomationProvider::WebkitMouseClick(DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; RenderViewHost* view; std::string error; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } WebKit::WebMouseEvent mouse_event; if (!args->GetInteger("x", &mouse_event.x) || !args->GetInteger("y", &mouse_event.y)) { AutomationJSONReply(this, reply_message) .SendError("(X,Y) coordinates missing or invalid"); return; } int button; if (!args->GetInteger("button", &button)) { AutomationJSONReply(this, reply_message) .SendError("Mouse button missing or invalid"); return; } if (button == automation::kLeftButton) { mouse_event.button = WebKit::WebMouseEvent::ButtonLeft; } else if (button == automation::kRightButton) { mouse_event.button = WebKit::WebMouseEvent::ButtonRight; } else if (button == automation::kMiddleButton) { mouse_event.button = WebKit::WebMouseEvent::ButtonMiddle; } else { AutomationJSONReply(this, reply_message) .SendError("Invalid button press requested"); return; } mouse_event.type = WebKit::WebInputEvent::MouseDown; mouse_event.clickCount = 1; view->ForwardMouseEvent(mouse_event); mouse_event.type = WebKit::WebInputEvent::MouseUp; new InputEventAckNotificationObserver(this, reply_message, mouse_event.type, 1); view->ForwardMouseEvent(mouse_event); } void TestingAutomationProvider::WebkitMouseMove( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; RenderViewHost* view; std::string error; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } WebKit::WebMouseEvent mouse_event; if (!args->GetInteger("x", &mouse_event.x) || !args->GetInteger("y", &mouse_event.y)) { AutomationJSONReply(this, reply_message) .SendError("(X,Y) coordinates missing or invalid"); return; } mouse_event.type = WebKit::WebInputEvent::MouseMove; new InputEventAckNotificationObserver(this, reply_message, mouse_event.type, 1); view->ForwardMouseEvent(mouse_event); } void TestingAutomationProvider::WebkitMouseDrag(DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; RenderViewHost* view; std::string error; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } WebKit::WebMouseEvent mouse_event; int start_x, start_y, end_x, end_y; if (!args->GetInteger("start_x", &start_x) || !args->GetInteger("start_y", &start_y) || !args->GetInteger("end_x", &end_x) || !args->GetInteger("end_y", &end_y)) { AutomationJSONReply(this, reply_message) .SendError("Invalid start/end positions"); return; } mouse_event.type = WebKit::WebInputEvent::MouseMove; // Step 1- Move the mouse to the start position. mouse_event.x = start_x; mouse_event.y = start_y; view->ForwardMouseEvent(mouse_event); // Step 2- Left click mouse down, the mouse button is fixed. mouse_event.type = WebKit::WebInputEvent::MouseDown; mouse_event.button = WebKit::WebMouseEvent::ButtonLeft; mouse_event.clickCount = 1; view->ForwardMouseEvent(mouse_event); // Step 3 - Move the mouse to the end position. mouse_event.type = WebKit::WebInputEvent::MouseMove; mouse_event.x = end_x; mouse_event.y = end_y; mouse_event.clickCount = 0; view->ForwardMouseEvent(mouse_event); // Step 4 - Release the left mouse button. mouse_event.type = WebKit::WebInputEvent::MouseUp; mouse_event.clickCount = 1; new InputEventAckNotificationObserver(this, reply_message, mouse_event.type, 1); view->ForwardMouseEvent(mouse_event); } void TestingAutomationProvider::WebkitMouseButtonDown( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; RenderViewHost* view; std::string error; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } WebKit::WebMouseEvent mouse_event; if (!args->GetInteger("x", &mouse_event.x) || !args->GetInteger("y", &mouse_event.y)) { AutomationJSONReply(this, reply_message) .SendError("(X,Y) coordinates missing or invalid"); return; } mouse_event.type = WebKit::WebInputEvent::MouseDown; mouse_event.button = WebKit::WebMouseEvent::ButtonLeft; mouse_event.clickCount = 1; new InputEventAckNotificationObserver(this, reply_message, mouse_event.type, 1); view->ForwardMouseEvent(mouse_event); } void TestingAutomationProvider::WebkitMouseButtonUp( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; RenderViewHost* view; std::string error; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } WebKit::WebMouseEvent mouse_event; if (!args->GetInteger("x", &mouse_event.x) || !args->GetInteger("y", &mouse_event.y)) { AutomationJSONReply(this, reply_message) .SendError("(X,Y) coordinates missing or invalid"); return; } mouse_event.type = WebKit::WebInputEvent::MouseUp; mouse_event.button = WebKit::WebMouseEvent::ButtonLeft; mouse_event.clickCount = 1; new InputEventAckNotificationObserver(this, reply_message, mouse_event.type, 1); view->ForwardMouseEvent(mouse_event); } void TestingAutomationProvider::WebkitMouseDoubleClick( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; RenderViewHost* view; std::string error; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } WebKit::WebMouseEvent mouse_event; if (!args->GetInteger("x", &mouse_event.x) || !args->GetInteger("y", &mouse_event.y)) { AutomationJSONReply(this, reply_message) .SendError("(X,Y) coordinates missing or invalid"); return; } mouse_event.type = WebKit::WebInputEvent::MouseDown; mouse_event.button = WebKit::WebMouseEvent::ButtonLeft; mouse_event.clickCount = 1; view->ForwardMouseEvent(mouse_event); mouse_event.type = WebKit::WebInputEvent::MouseUp; new InputEventAckNotificationObserver(this, reply_message, mouse_event.type, 2); view->ForwardMouseEvent(mouse_event); mouse_event.type = WebKit::WebInputEvent::MouseDown; mouse_event.clickCount = 2; view->ForwardMouseEvent(mouse_event); mouse_event.type = WebKit::WebInputEvent::MouseUp; view->ForwardMouseEvent(mouse_event); } void TestingAutomationProvider::DragAndDropFilePaths( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; RenderViewHost* view; std::string error; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } int x, y; if (!args->GetInteger("x", &x) || !args->GetInteger("y", &y)) { AutomationJSONReply(this, reply_message) .SendError("(X,Y) coordinates missing or invalid"); return; } ListValue* paths = NULL; if (!args->GetList("paths", &paths)) { AutomationJSONReply(this, reply_message) .SendError("'paths' missing or invalid"); return; } // Emulate drag and drop to set the file paths to the file upload control. WebDropData drop_data; for (size_t path_index = 0; path_index < paths->GetSize(); ++path_index) { string16 path; if (!paths->GetString(path_index, &path)) { AutomationJSONReply(this, reply_message) .SendError("'paths' contains a non-string type"); return; } drop_data.filenames.push_back( WebDropData::FileInfo(path, string16())); } const gfx::Point client(x, y); // We don't set any values in screen variable because DragTarget*** ignore the // screen argument. const gfx::Point screen; int operations = 0; operations |= WebKit::WebDragOperationCopy; operations |= WebKit::WebDragOperationLink; operations |= WebKit::WebDragOperationMove; view->DragTargetDragEnter( drop_data, client, screen, static_cast<WebKit::WebDragOperationsMask>(operations), 0); new DragTargetDropAckNotificationObserver(this, reply_message); view->DragTargetDrop(client, screen, 0); } void TestingAutomationProvider::GetTabCount(int handle, int* tab_count) { *tab_count = -1; // -1 is the error code if (browser_tracker_->ContainsHandle(handle)) { Browser* browser = browser_tracker_->GetResource(handle); *tab_count = browser->tab_strip_model()->count(); } } void TestingAutomationProvider::GetType(int handle, int* type_as_int) { *type_as_int = -1; // -1 is the error code if (browser_tracker_->ContainsHandle(handle)) { Browser* browser = browser_tracker_->GetResource(handle); *type_as_int = static_cast<int>(browser->type()); } } void TestingAutomationProvider::GetTab(int win_handle, int tab_index, int* tab_handle) { *tab_handle = 0; if (browser_tracker_->ContainsHandle(win_handle) && (tab_index >= 0)) { Browser* browser = browser_tracker_->GetResource(win_handle); if (tab_index < browser->tab_strip_model()->count()) { WebContents* web_contents = browser->tab_strip_model()->GetWebContentsAt(tab_index); *tab_handle = tab_tracker_->Add(&web_contents->GetController()); } } } void TestingAutomationProvider::GetTabTitle(int handle, int* title_string_size, std::wstring* title) { *title_string_size = -1; // -1 is the error code if (tab_tracker_->ContainsHandle(handle)) { NavigationController* tab = tab_tracker_->GetResource(handle); NavigationEntry* entry = tab->GetActiveEntry(); if (entry != NULL) { *title = UTF16ToWideHack(entry->GetTitleForDisplay(std::string())); } else { *title = std::wstring(); } *title_string_size = static_cast<int>(title->size()); } } void TestingAutomationProvider::GetTabIndex(int handle, int* tabstrip_index) { *tabstrip_index = -1; // -1 is the error code if (tab_tracker_->ContainsHandle(handle)) { NavigationController* tab = tab_tracker_->GetResource(handle); Browser* browser = chrome::FindBrowserWithWebContents( tab->GetWebContents()); *tabstrip_index = browser->tab_strip_model()->GetIndexOfWebContents( tab->GetWebContents()); } } void TestingAutomationProvider::GetTabURL(int handle, bool* success, GURL* url) { *success = false; if (tab_tracker_->ContainsHandle(handle)) { NavigationController* tab = tab_tracker_->GetResource(handle); // Return what the user would see in the location bar. *url = tab->GetActiveEntry()->GetVirtualURL(); *success = true; } } void TestingAutomationProvider::ExecuteJavascriptInRenderViewFrame( const string16& frame_xpath, const string16& script, IPC::Message* reply_message, RenderViewHost* render_view_host) { // Set the routing id of this message with the controller. // This routing id needs to be remembered for the reverse // communication while sending back the response of // this javascript execution. render_view_host->ExecuteJavascriptInWebFrame( frame_xpath, UTF8ToUTF16("window.domAutomationController.setAutomationId(0);")); render_view_host->ExecuteJavascriptInWebFrame( frame_xpath, script); } void TestingAutomationProvider::ExecuteJavascript( int handle, const std::wstring& frame_xpath, const std::wstring& script, IPC::Message* reply_message) { WebContents* web_contents = GetWebContentsForHandle(handle, NULL); if (!web_contents) { AutomationMsg_DomOperation::WriteReplyParams(reply_message, std::string()); Send(reply_message); return; } new DomOperationMessageSender(this, reply_message, false); ExecuteJavascriptInRenderViewFrame(WideToUTF16Hack(frame_xpath), WideToUTF16Hack(script), reply_message, web_contents->GetRenderViewHost()); } // Sample json input: { "command": "OpenNewBrowserWindowWithNewProfile" } // Sample output: {} void TestingAutomationProvider::OpenNewBrowserWindowWithNewProfile( base::DictionaryValue* args, IPC::Message* reply_message) { ProfileManager* profile_manager = g_browser_process->profile_manager(); new BrowserOpenedWithNewProfileNotificationObserver(this, reply_message); profile_manager->CreateMultiProfileAsync( string16(), string16(), ProfileManager::CreateCallback(), chrome::HOST_DESKTOP_TYPE_NATIVE, false); } // Sample json input: { "command": "GetMultiProfileInfo" } // See GetMultiProfileInfo() in pyauto.py for sample output. void TestingAutomationProvider::GetMultiProfileInfo( base::DictionaryValue* args, IPC::Message* reply_message) { scoped_ptr<DictionaryValue> return_value(new DictionaryValue); ProfileManager* profile_manager = g_browser_process->profile_manager(); const ProfileInfoCache& profile_info_cache = profile_manager->GetProfileInfoCache(); return_value->SetBoolean("enabled", profile_manager->IsMultipleProfilesEnabled()); ListValue* profiles = new ListValue; for (size_t index = 0; index < profile_info_cache.GetNumberOfProfiles(); ++index) { DictionaryValue* item = new DictionaryValue; item->SetString("name", profile_info_cache.GetNameOfProfileAtIndex(index)); item->SetString("path", profile_info_cache.GetPathOfProfileAtIndex(index).value()); profiles->Append(item); } return_value->Set("profiles", profiles); AutomationJSONReply(this, reply_message).SendSuccess(return_value.get()); } void TestingAutomationProvider::OpenNewBrowserWindowOfType( int type, bool show, IPC::Message* reply_message) { new BrowserOpenedNotificationObserver(this, reply_message, false); // We may have no current browser windows open so don't rely on // asking an existing browser to execute the IDC_NEWWINDOW command. Browser* browser = new Browser( Browser::CreateParams(static_cast<Browser::Type>(type), profile_, chrome::HOST_DESKTOP_TYPE_NATIVE)); chrome::AddBlankTabAt(browser, -1, true); if (show) browser->window()->Show(); } void TestingAutomationProvider::OpenNewBrowserWindow( base::DictionaryValue* args, IPC::Message* reply_message) { bool show; if (!args->GetBoolean("show", &show)) { AutomationJSONReply(this, reply_message) .SendError("'show' missing or invalid."); return; } new BrowserOpenedNotificationObserver(this, reply_message, true); Browser* browser = new Browser( Browser::CreateParams(Browser::TYPE_TABBED, profile_, chrome::HOST_DESKTOP_TYPE_NATIVE)); chrome::AddBlankTabAt(browser, -1, true); if (show) browser->window()->Show(); } void TestingAutomationProvider::GetBrowserWindowCountJSON( base::DictionaryValue* args, IPC::Message* reply_message) { DictionaryValue dict; // The automation layer doesn't support non-native desktops. dict.SetInteger("count", static_cast<int>(BrowserList::GetInstance( chrome::HOST_DESKTOP_TYPE_NATIVE)->size())); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::CloseBrowserWindow( base::DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } new BrowserClosedNotificationObserver(browser, this, reply_message, true); browser->window()->Close(); } void TestingAutomationProvider::OpenProfileWindow( base::DictionaryValue* args, IPC::Message* reply_message) { ProfileManager* profile_manager = g_browser_process->profile_manager(); base::FilePath::StringType path; if (!args->GetString("path", &path)) { AutomationJSONReply(this, reply_message).SendError( "Invalid or missing arg: 'path'"); return; } Profile* profile = profile_manager->GetProfileByPath(base::FilePath(path)); if (!profile) { AutomationJSONReply(this, reply_message).SendError( base::StringPrintf("Invalid profile path: %s", path.c_str())); return; } int num_loads; if (!args->GetInteger("num_loads", &num_loads)) { AutomationJSONReply(this, reply_message).SendError( "Invalid or missing arg: 'num_loads'"); return; } new BrowserOpenedWithExistingProfileNotificationObserver( this, reply_message, num_loads); ProfileManager::FindOrCreateNewWindowForProfile( profile, chrome::startup::IS_NOT_PROCESS_STARTUP, chrome::startup::IS_NOT_FIRST_RUN, chrome::HOST_DESKTOP_TYPE_NATIVE, false); } void TestingAutomationProvider::GetWindowForBrowser(int browser_handle, bool* success, int* handle) { *success = false; *handle = 0; if (browser_tracker_->ContainsHandle(browser_handle)) { Browser* browser = browser_tracker_->GetResource(browser_handle); gfx::NativeWindow win = browser->window()->GetNativeWindow(); // Add() returns the existing handle for the resource if any. *handle = window_tracker_->Add(win); *success = true; } } void TestingAutomationProvider::GetMetricEventDuration( const std::string& event_name, int* duration_ms) { *duration_ms = metric_event_duration_observer_->GetEventDurationMs( event_name); } void TestingAutomationProvider::BringBrowserToFront(int browser_handle, bool* success) { *success = false; if (browser_tracker_->ContainsHandle(browser_handle)) { Browser* browser = browser_tracker_->GetResource(browser_handle); browser->window()->Activate(); *success = true; } } void TestingAutomationProvider::GetFindWindowVisibility(int handle, bool* visible) { *visible = false; Browser* browser = browser_tracker_->GetResource(handle); if (browser) { FindBarTesting* find_bar = browser->GetFindBarController()->find_bar()->GetFindBarTesting(); find_bar->GetFindBarWindowInfo(NULL, visible); } } // Bookmark bar visibility is based on the pref (e.g. is it in the toolbar). // Presence in the NTP is signalled in |detached|. void TestingAutomationProvider::GetBookmarkBarStatus( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } // browser->window()->IsBookmarkBarVisible() is not consistent across // platforms. bookmark_bar_state() also follows prefs::kShowBookmarkBar // and has a shared implementation on all platforms. DictionaryValue dict; dict.SetBoolean("visible", browser->bookmark_bar_state() == BookmarkBar::SHOW); dict.SetBoolean("animating", browser->window()->IsBookmarkBarAnimating()); dict.SetBoolean("detached", browser->bookmark_bar_state() == BookmarkBar::DETACHED); reply.SendSuccess(&dict); } void TestingAutomationProvider::GetBookmarksAsJSON( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg, bookmarks_as_json; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } BookmarkModel* bookmark_model = BookmarkModelFactory::GetForProfile(browser->profile()); if (!bookmark_model->IsLoaded()) { reply.SendError("Bookmark model is not loaded"); return; } scoped_refptr<BookmarkStorage> storage( new BookmarkStorage(browser->profile(), bookmark_model, browser->profile()->GetIOTaskRunner())); if (!storage->SerializeData(&bookmarks_as_json)) { reply.SendError("Failed to serialize bookmarks"); return; } DictionaryValue dict; dict.SetString("bookmarks_as_json", bookmarks_as_json); reply.SendSuccess(&dict); } void TestingAutomationProvider::WaitForBookmarkModelToLoad( int handle, IPC::Message* reply_message) { if (browser_tracker_->ContainsHandle(handle)) { Browser* browser = browser_tracker_->GetResource(handle); BookmarkModel* model = BookmarkModelFactory::GetForProfile(browser->profile()); AutomationProviderBookmarkModelObserver* observer = new AutomationProviderBookmarkModelObserver(this, reply_message, model, false); if (model->IsLoaded()) { observer->ReleaseReply(); delete observer; AutomationMsg_WaitForBookmarkModelToLoad::WriteReplyParams( reply_message, true); Send(reply_message); } } } void TestingAutomationProvider::WaitForBookmarkModelToLoadJSON( DictionaryValue* args, IPC::Message* reply_message) { Browser* browser; std::string error_msg, bookmarks_as_json; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { AutomationJSONReply(this, reply_message).SendError(error_msg); return; } BookmarkModel* model = BookmarkModelFactory::GetForProfile(browser->profile()); AutomationProviderBookmarkModelObserver* observer = new AutomationProviderBookmarkModelObserver(this, reply_message, model, true); if (model->IsLoaded()) { observer->ReleaseReply(); delete observer; AutomationJSONReply(this, reply_message).SendSuccess(NULL); return; } } void TestingAutomationProvider::AddBookmark( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg, url; string16 title; int parent_id, index; bool folder; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } if (!args->GetBoolean("is_folder", &folder)) { reply.SendError("'is_folder' missing or invalid"); return; } if (!folder && !args->GetString("url", &url)) { reply.SendError("'url' missing or invalid"); return; } if (!args->GetInteger("parent_id", &parent_id)) { reply.SendError("'parent_id' missing or invalid"); return; } if (!args->GetInteger("index", &index)) { reply.SendError("'index' missing or invalid"); return; } if (!args->GetString("title", &title)) { reply.SendError("'title' missing or invalid"); return; } BookmarkModel* model = BookmarkModelFactory::GetForProfile(browser->profile()); if (!model->IsLoaded()) { reply.SendError("Bookmark model is not loaded"); return; } const BookmarkNode* parent = model->GetNodeByID(parent_id); if (!parent) { reply.SendError("Failed to get parent bookmark node"); return; } const BookmarkNode* child; if (folder) { child = model->AddFolder(parent, index, title); } else { child = model->AddURL(parent, index, title, GURL(url)); } if (!child) { reply.SendError("Failed to add bookmark"); return; } reply.SendSuccess(NULL); } void TestingAutomationProvider::ReparentBookmark(DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; int new_parent_id, id, index; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } if (!args->GetInteger("id", &id)) { reply.SendError("'id' missing or invalid"); return; } if (!args->GetInteger("new_parent_id", &new_parent_id)) { reply.SendError("'new_parent_id' missing or invalid"); return; } if (!args->GetInteger("index", &index)) { reply.SendError("'index' missing or invalid"); return; } BookmarkModel* model = BookmarkModelFactory::GetForProfile(browser->profile()); if (!model->IsLoaded()) { reply.SendError("Bookmark model is not loaded"); return; } const BookmarkNode* node = model->GetNodeByID(id); const BookmarkNode* new_parent = model->GetNodeByID(new_parent_id); if (!node) { reply.SendError("Failed to get bookmark node"); return; } if (!new_parent) { reply.SendError("Failed to get new parent bookmark node"); return; } model->Move(node, new_parent, index); reply.SendSuccess(NULL); } void TestingAutomationProvider::SetBookmarkTitle(DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; string16 title; int id; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } if (!args->GetInteger("id", &id)) { reply.SendError("'id' missing or invalid"); return; } if (!args->GetString("title", &title)) { reply.SendError("'title' missing or invalid"); return; } BookmarkModel* model = BookmarkModelFactory::GetForProfile(browser->profile()); if (!model->IsLoaded()) { reply.SendError("Bookmark model is not loaded"); return; } const BookmarkNode* node = model->GetNodeByID(id); if (!node) { reply.SendError("Failed to get bookmark node"); return; } model->SetTitle(node, title); reply.SendSuccess(NULL); } void TestingAutomationProvider::SetBookmarkURL(DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg, url; int id; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } if (!args->GetInteger("id", &id)) { reply.SendError("'id' missing or invalid"); return; } if (!args->GetString("url", &url)) { reply.SendError("'url' missing or invalid"); return; } BookmarkModel* model = BookmarkModelFactory::GetForProfile(browser->profile()); if (!model->IsLoaded()) { reply.SendError("Bookmark model is not loaded"); return; } const BookmarkNode* node = model->GetNodeByID(id); if (!node) { reply.SendError("Failed to get bookmark node"); return; } model->SetURL(node, GURL(url)); reply.SendSuccess(NULL); } void TestingAutomationProvider::RemoveBookmark(DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; int id; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } if (!args->GetInteger("id", &id)) { reply.SendError("'id' missing or invalid"); return; } BookmarkModel* model = BookmarkModelFactory::GetForProfile(browser->profile()); if (!model->IsLoaded()) { reply.SendError("Bookmark model is not loaded"); return; } const BookmarkNode* node = model->GetNodeByID(id); if (!node) { reply.SendError("Failed to get bookmark node"); return; } const BookmarkNode* parent = node->parent(); if (!parent) { reply.SendError("Failed to get parent bookmark node"); return; } model->Remove(parent, parent->GetIndexOf(node)); reply.SendSuccess(NULL); } void TestingAutomationProvider::WaitForBrowserWindowCountToBecome( int target_count, IPC::Message* reply_message) { // The automation layer doesn't support non-native desktops. int current_count = static_cast<int>(BrowserList::GetInstance( chrome::HOST_DESKTOP_TYPE_NATIVE)->size()); if (current_count == target_count) { AutomationMsg_WaitForBrowserWindowCountToBecome::WriteReplyParams( reply_message, true); Send(reply_message); return; } // Set up an observer (it will delete itself). new BrowserCountChangeNotificationObserver(target_count, this, reply_message); } void TestingAutomationProvider::GoBackBlockUntilNavigationsComplete( int handle, int number_of_navigations, IPC::Message* reply_message) { if (tab_tracker_->ContainsHandle(handle)) { NavigationController* tab = tab_tracker_->GetResource(handle); Browser* browser = FindAndActivateTab(tab); if (chrome::IsCommandEnabled(browser, IDC_BACK)) { new NavigationNotificationObserver(tab, this, reply_message, number_of_navigations, false, false); chrome::ExecuteCommand(browser, IDC_BACK); return; } } AutomationMsg_GoBackBlockUntilNavigationsComplete::WriteReplyParams( reply_message, AUTOMATION_MSG_NAVIGATION_ERROR); Send(reply_message); } void TestingAutomationProvider::GoForwardBlockUntilNavigationsComplete( int handle, int number_of_navigations, IPC::Message* reply_message) { if (tab_tracker_->ContainsHandle(handle)) { NavigationController* tab = tab_tracker_->GetResource(handle); Browser* browser = FindAndActivateTab(tab); if (chrome::IsCommandEnabled(browser, IDC_FORWARD)) { new NavigationNotificationObserver(tab, this, reply_message, number_of_navigations, false, false); chrome::ExecuteCommand(browser, IDC_FORWARD); return; } } AutomationMsg_GoForwardBlockUntilNavigationsComplete::WriteReplyParams( reply_message, AUTOMATION_MSG_NAVIGATION_ERROR); Send(reply_message); } void TestingAutomationProvider::BuildJSONHandlerMaps() { // Map json commands to their handlers. handler_map_["ApplyAccelerator"] = &TestingAutomationProvider::ExecuteBrowserCommandAsyncJSON; handler_map_["RunCommand"] = &TestingAutomationProvider::ExecuteBrowserCommandJSON; handler_map_["IsMenuCommandEnabled"] = &TestingAutomationProvider::IsMenuCommandEnabledJSON; handler_map_["ActivateTab"] = &TestingAutomationProvider::ActivateTabJSON; handler_map_["BringBrowserToFront"] = &TestingAutomationProvider::BringBrowserToFrontJSON; handler_map_["WaitForAllTabsToStopLoading"] = &TestingAutomationProvider::WaitForAllViewsToStopLoading; handler_map_["GetIndicesFromTab"] = &TestingAutomationProvider::GetIndicesFromTab; handler_map_["NavigateToURL"] = &TestingAutomationProvider::NavigateToURL; handler_map_["GetActiveTabIndex"] = &TestingAutomationProvider::GetActiveTabIndexJSON; handler_map_["AppendTab"] = &TestingAutomationProvider::AppendTabJSON; handler_map_["OpenNewBrowserWindow"] = &TestingAutomationProvider::OpenNewBrowserWindow; handler_map_["CloseBrowserWindow"] = &TestingAutomationProvider::CloseBrowserWindow; handler_map_["WaitUntilNavigationCompletes"] = &TestingAutomationProvider::WaitUntilNavigationCompletes; handler_map_["GetLocalStatePrefsInfo"] = &TestingAutomationProvider::GetLocalStatePrefsInfo; handler_map_["SetLocalStatePrefs"] = &TestingAutomationProvider::SetLocalStatePrefs; handler_map_["GetPrefsInfo"] = &TestingAutomationProvider::GetPrefsInfo; handler_map_["SetPrefs"] = &TestingAutomationProvider::SetPrefs; handler_map_["ExecuteJavascript"] = &TestingAutomationProvider::ExecuteJavascriptJSON; handler_map_["AddDomEventObserver"] = &TestingAutomationProvider::AddDomEventObserver; handler_map_["RemoveEventObserver"] = &TestingAutomationProvider::RemoveEventObserver; handler_map_["GetNextEvent"] = &TestingAutomationProvider::GetNextEvent; handler_map_["ClearEventQueue"] = &TestingAutomationProvider::ClearEventQueue; handler_map_["ExecuteJavascriptInRenderView"] = &TestingAutomationProvider::ExecuteJavascriptInRenderView; handler_map_["GoForward"] = &TestingAutomationProvider::GoForward; handler_map_["GoBack"] = &TestingAutomationProvider::GoBack; handler_map_["Reload"] = &TestingAutomationProvider::ReloadJSON; handler_map_["OpenFindInPage"] = &TestingAutomationProvider::OpenFindInPage; handler_map_["IsFindInPageVisible"] = &TestingAutomationProvider::IsFindInPageVisible; handler_map_["CaptureEntirePage"] = &TestingAutomationProvider::CaptureEntirePageJSON; handler_map_["SetDownloadShelfVisible"] = &TestingAutomationProvider::SetDownloadShelfVisibleJSON; handler_map_["IsDownloadShelfVisible"] = &TestingAutomationProvider::IsDownloadShelfVisibleJSON; handler_map_["GetDownloadDirectory"] = &TestingAutomationProvider::GetDownloadDirectoryJSON; handler_map_["GetCookies"] = &TestingAutomationProvider::GetCookiesJSON; handler_map_["DeleteCookie"] = &TestingAutomationProvider::DeleteCookieJSON; handler_map_["SetCookie"] = &TestingAutomationProvider::SetCookieJSON; handler_map_["GetCookiesInBrowserContext"] = &TestingAutomationProvider::GetCookiesInBrowserContext; handler_map_["DeleteCookieInBrowserContext"] = &TestingAutomationProvider::DeleteCookieInBrowserContext; handler_map_["SetCookieInBrowserContext"] = &TestingAutomationProvider::SetCookieInBrowserContext; handler_map_["WaitForBookmarkModelToLoad"] = &TestingAutomationProvider::WaitForBookmarkModelToLoadJSON; handler_map_["GetBookmarksAsJSON"] = &TestingAutomationProvider::GetBookmarksAsJSON; handler_map_["GetBookmarkBarStatus"] = &TestingAutomationProvider::GetBookmarkBarStatus; handler_map_["AddBookmark"] = &TestingAutomationProvider::AddBookmark; handler_map_["ReparentBookmark"] = &TestingAutomationProvider::ReparentBookmark; handler_map_["SetBookmarkTitle"] = &TestingAutomationProvider::SetBookmarkTitle; handler_map_["SetBookmarkURL"] = &TestingAutomationProvider::SetBookmarkURL; handler_map_["RemoveBookmark"] = &TestingAutomationProvider::RemoveBookmark; handler_map_["GetTabIds"] = &TestingAutomationProvider::GetTabIds; handler_map_["GetViews"] = &TestingAutomationProvider::GetViews; handler_map_["IsTabIdValid"] = &TestingAutomationProvider::IsTabIdValid; handler_map_["DoesAutomationObjectExist"] = &TestingAutomationProvider::DoesAutomationObjectExist; handler_map_["CloseTab"] = &TestingAutomationProvider::CloseTabJSON; handler_map_["SetViewBounds"] = &TestingAutomationProvider::SetViewBounds; handler_map_["MaximizeView"] = &TestingAutomationProvider::MaximizeView; handler_map_["WebkitMouseMove"] = &TestingAutomationProvider::WebkitMouseMove; handler_map_["WebkitMouseClick"] = &TestingAutomationProvider::WebkitMouseClick; handler_map_["WebkitMouseDrag"] = &TestingAutomationProvider::WebkitMouseDrag; handler_map_["WebkitMouseButtonUp"] = &TestingAutomationProvider::WebkitMouseButtonUp; handler_map_["WebkitMouseButtonDown"] = &TestingAutomationProvider::WebkitMouseButtonDown; handler_map_["WebkitMouseDoubleClick"] = &TestingAutomationProvider::WebkitMouseDoubleClick; handler_map_["DragAndDropFilePaths"] = &TestingAutomationProvider::DragAndDropFilePaths; handler_map_["SendWebkitKeyEvent"] = &TestingAutomationProvider::SendWebkitKeyEvent; handler_map_["ProcessWebMouseEvent"] = &TestingAutomationProvider::ProcessWebMouseEvent; handler_map_["ActivateTab"] = &TestingAutomationProvider::ActivateTabJSON; handler_map_["GetAppModalDialogMessage"] = &TestingAutomationProvider::GetAppModalDialogMessage; handler_map_["AcceptOrDismissAppModalDialog"] = &TestingAutomationProvider::AcceptOrDismissAppModalDialog; handler_map_["ActionOnSSLBlockingPage"] = &TestingAutomationProvider::ActionOnSSLBlockingPage; handler_map_["GetSecurityState"] = &TestingAutomationProvider::GetSecurityState; handler_map_["GetChromeDriverAutomationVersion"] = &TestingAutomationProvider::GetChromeDriverAutomationVersion; handler_map_["IsPageActionVisible"] = &TestingAutomationProvider::IsPageActionVisible; handler_map_["CreateNewAutomationProvider"] = &TestingAutomationProvider::CreateNewAutomationProvider; handler_map_["GetBrowserWindowCount"] = &TestingAutomationProvider::GetBrowserWindowCountJSON; handler_map_["GetBrowserInfo"] = &TestingAutomationProvider::GetBrowserInfo; handler_map_["GetTabInfo"] = &TestingAutomationProvider::GetTabInfo; handler_map_["GetTabCount"] = &TestingAutomationProvider::GetTabCountJSON; handler_map_["OpenNewBrowserWindowWithNewProfile"] = &TestingAutomationProvider::OpenNewBrowserWindowWithNewProfile; handler_map_["GetMultiProfileInfo"] = &TestingAutomationProvider::GetMultiProfileInfo; handler_map_["OpenProfileWindow"] = &TestingAutomationProvider::OpenProfileWindow; handler_map_["GetProcessInfo"] = &TestingAutomationProvider::GetProcessInfo; handler_map_["RefreshPolicies"] = &TestingAutomationProvider::RefreshPolicies; handler_map_["InstallExtension"] = &TestingAutomationProvider::InstallExtension; handler_map_["GetExtensionsInfo"] = &TestingAutomationProvider::GetExtensionsInfo; handler_map_["UninstallExtensionById"] = &TestingAutomationProvider::UninstallExtensionById; handler_map_["SetExtensionStateById"] = &TestingAutomationProvider::SetExtensionStateById; handler_map_["TriggerPageActionById"] = &TestingAutomationProvider::TriggerPageActionById; handler_map_["TriggerBrowserActionById"] = &TestingAutomationProvider::TriggerBrowserActionById; handler_map_["UpdateExtensionsNow"] = &TestingAutomationProvider::UpdateExtensionsNow; #if !defined(NO_TCMALLOC) && (defined(OS_LINUX) || defined(OS_CHROMEOS)) handler_map_["HeapProfilerDump"] = &TestingAutomationProvider::HeapProfilerDump; #endif // !defined(NO_TCMALLOC) && (defined(OS_LINUX) || defined(OS_CHROMEOS)) handler_map_["OverrideGeoposition"] = &TestingAutomationProvider::OverrideGeoposition; handler_map_["SimulateAsanMemoryBug"] = &TestingAutomationProvider::SimulateAsanMemoryBug; #if defined(OS_CHROMEOS) handler_map_["AcceptOOBENetworkScreen"] = &TestingAutomationProvider::AcceptOOBENetworkScreen; handler_map_["AcceptOOBEEula"] = &TestingAutomationProvider::AcceptOOBEEula; handler_map_["CancelOOBEUpdate"] = &TestingAutomationProvider::CancelOOBEUpdate; handler_map_["PickUserImage"] = &TestingAutomationProvider::PickUserImage; handler_map_["SkipToLogin"] = &TestingAutomationProvider::SkipToLogin; handler_map_["GetOOBEScreenInfo"] = &TestingAutomationProvider::GetOOBEScreenInfo; handler_map_["GetLoginInfo"] = &TestingAutomationProvider::GetLoginInfo; handler_map_["ShowCreateAccountUI"] = &TestingAutomationProvider::ShowCreateAccountUI; handler_map_["ExecuteJavascriptInOOBEWebUI"] = &TestingAutomationProvider::ExecuteJavascriptInOOBEWebUI; handler_map_["LoginAsGuest"] = &TestingAutomationProvider::LoginAsGuest; handler_map_["SubmitLoginForm"] = &TestingAutomationProvider::SubmitLoginForm; handler_map_["AddLoginEventObserver"] = &TestingAutomationProvider::AddLoginEventObserver; handler_map_["SignOut"] = &TestingAutomationProvider::SignOut; handler_map_["LockScreen"] = &TestingAutomationProvider::LockScreen; handler_map_["UnlockScreen"] = &TestingAutomationProvider::UnlockScreen; handler_map_["SignoutInScreenLocker"] = &TestingAutomationProvider::SignoutInScreenLocker; handler_map_["GetBatteryInfo"] = &TestingAutomationProvider::GetBatteryInfo; handler_map_["GetNetworkInfo"] = &TestingAutomationProvider::GetNetworkInfo; handler_map_["NetworkScan"] = &TestingAutomationProvider::NetworkScan; handler_map_["ToggleNetworkDevice"] = &TestingAutomationProvider::ToggleNetworkDevice; handler_map_["ConnectToCellularNetwork"] = &TestingAutomationProvider::ConnectToCellularNetwork; handler_map_["DisconnectFromCellularNetwork"] = &TestingAutomationProvider::DisconnectFromCellularNetwork; handler_map_["ConnectToWifiNetwork"] = &TestingAutomationProvider::ConnectToWifiNetwork; handler_map_["ConnectToHiddenWifiNetwork"] = &TestingAutomationProvider::ConnectToHiddenWifiNetwork; handler_map_["DisconnectFromWifiNetwork"] = &TestingAutomationProvider::DisconnectFromWifiNetwork; handler_map_["ForgetWifiNetwork"] = &TestingAutomationProvider::ForgetWifiNetwork; handler_map_["AddPrivateNetwork"] = &TestingAutomationProvider::AddPrivateNetwork; handler_map_["GetPrivateNetworkInfo"] = &TestingAutomationProvider::GetPrivateNetworkInfo; handler_map_["ConnectToPrivateNetwork"] = &TestingAutomationProvider::ConnectToPrivateNetwork; handler_map_["DisconnectFromPrivateNetwork"] = &TestingAutomationProvider::DisconnectFromPrivateNetwork; handler_map_["EnableSpokenFeedback"] = &TestingAutomationProvider::EnableSpokenFeedback; handler_map_["IsSpokenFeedbackEnabled"] = &TestingAutomationProvider::IsSpokenFeedbackEnabled; handler_map_["GetTimeInfo"] = &TestingAutomationProvider::GetTimeInfo; handler_map_["SetTimezone"] = &TestingAutomationProvider::SetTimezone; handler_map_["GetUpdateInfo"] = &TestingAutomationProvider::GetUpdateInfo; handler_map_["UpdateCheck"] = &TestingAutomationProvider::UpdateCheck; handler_map_["SetReleaseTrack"] = &TestingAutomationProvider::SetReleaseTrack; handler_map_["GetVolumeInfo"] = &TestingAutomationProvider::GetVolumeInfo; handler_map_["SetVolume"] = &TestingAutomationProvider::SetVolume; handler_map_["SetMute"] = &TestingAutomationProvider::SetMute; handler_map_["OpenCrosh"] = &TestingAutomationProvider::OpenCrosh; handler_map_["SetProxySettings"] = &TestingAutomationProvider::SetProxySettings; handler_map_["GetProxySettings"] = &TestingAutomationProvider::GetProxySettings; handler_map_["SetSharedProxies"] = &TestingAutomationProvider::SetSharedProxies; handler_map_["RefreshInternetDetails"] = &TestingAutomationProvider::RefreshInternetDetails; browser_handler_map_["GetTimeInfo"] = &TestingAutomationProvider::GetTimeInfo; #endif // defined(OS_CHROMEOS) browser_handler_map_["DisablePlugin"] = &TestingAutomationProvider::DisablePlugin; browser_handler_map_["EnablePlugin"] = &TestingAutomationProvider::EnablePlugin; browser_handler_map_["GetPluginsInfo"] = &TestingAutomationProvider::GetPluginsInfo; browser_handler_map_["GetNavigationInfo"] = &TestingAutomationProvider::GetNavigationInfo; browser_handler_map_["PerformActionOnInfobar"] = &TestingAutomationProvider::PerformActionOnInfobar; browser_handler_map_["GetHistoryInfo"] = &TestingAutomationProvider::GetHistoryInfo; browser_handler_map_["GetOmniboxInfo"] = &TestingAutomationProvider::GetOmniboxInfo; browser_handler_map_["SetOmniboxText"] = &TestingAutomationProvider::SetOmniboxText; browser_handler_map_["OmniboxAcceptInput"] = &TestingAutomationProvider::OmniboxAcceptInput; browser_handler_map_["OmniboxMovePopupSelection"] = &TestingAutomationProvider::OmniboxMovePopupSelection; browser_handler_map_["LoadSearchEngineInfo"] = &TestingAutomationProvider::LoadSearchEngineInfo; browser_handler_map_["GetSearchEngineInfo"] = &TestingAutomationProvider::GetSearchEngineInfo; browser_handler_map_["AddOrEditSearchEngine"] = &TestingAutomationProvider::AddOrEditSearchEngine; browser_handler_map_["PerformActionOnSearchEngine"] = &TestingAutomationProvider::PerformActionOnSearchEngine; browser_handler_map_["SetWindowDimensions"] = &TestingAutomationProvider::SetWindowDimensions; browser_handler_map_["GetDownloadsInfo"] = &TestingAutomationProvider::GetDownloadsInfo; browser_handler_map_["WaitForAllDownloadsToComplete"] = &TestingAutomationProvider::WaitForAllDownloadsToComplete; browser_handler_map_["PerformActionOnDownload"] = &TestingAutomationProvider::PerformActionOnDownload; browser_handler_map_["GetInitialLoadTimes"] = &TestingAutomationProvider::GetInitialLoadTimes; browser_handler_map_["SaveTabContents"] = &TestingAutomationProvider::SaveTabContents; browser_handler_map_["ImportSettings"] = &TestingAutomationProvider::ImportSettings; browser_handler_map_["AddSavedPassword"] = &TestingAutomationProvider::AddSavedPassword; browser_handler_map_["RemoveSavedPassword"] = &TestingAutomationProvider::RemoveSavedPassword; browser_handler_map_["GetSavedPasswords"] = &TestingAutomationProvider::GetSavedPasswords; browser_handler_map_["FindInPage"] = &TestingAutomationProvider::FindInPage; browser_handler_map_["GetAllNotifications"] = &TestingAutomationProvider::GetAllNotifications; browser_handler_map_["CloseNotification"] = &TestingAutomationProvider::CloseNotification; browser_handler_map_["WaitForNotificationCount"] = &TestingAutomationProvider::WaitForNotificationCount; browser_handler_map_["GetNTPInfo"] = &TestingAutomationProvider::GetNTPInfo; browser_handler_map_["RemoveNTPMostVisitedThumbnail"] = &TestingAutomationProvider::RemoveNTPMostVisitedThumbnail; browser_handler_map_["RestoreAllNTPMostVisitedThumbnails"] = &TestingAutomationProvider::RestoreAllNTPMostVisitedThumbnails; browser_handler_map_["KillRendererProcess"] = &TestingAutomationProvider::KillRendererProcess; browser_handler_map_["LaunchApp"] = &TestingAutomationProvider::LaunchApp; browser_handler_map_["SetAppLaunchType"] = &TestingAutomationProvider::SetAppLaunchType; browser_handler_map_["GetV8HeapStats"] = &TestingAutomationProvider::GetV8HeapStats; browser_handler_map_["GetFPS"] = &TestingAutomationProvider::GetFPS; browser_handler_map_["IsFullscreenForBrowser"] = &TestingAutomationProvider::IsFullscreenForBrowser; browser_handler_map_["IsFullscreenForTab"] = &TestingAutomationProvider::IsFullscreenForTab; browser_handler_map_["IsMouseLocked"] = &TestingAutomationProvider::IsMouseLocked; browser_handler_map_["IsMouseLockPermissionRequested"] = &TestingAutomationProvider::IsMouseLockPermissionRequested; browser_handler_map_["IsFullscreenPermissionRequested"] = &TestingAutomationProvider::IsFullscreenPermissionRequested; browser_handler_map_["IsFullscreenBubbleDisplayed"] = &TestingAutomationProvider::IsFullscreenBubbleDisplayed; browser_handler_map_["IsFullscreenBubbleDisplayingButtons"] = &TestingAutomationProvider::IsFullscreenBubbleDisplayingButtons; browser_handler_map_["AcceptCurrentFullscreenOrMouseLockRequest"] = &TestingAutomationProvider::AcceptCurrentFullscreenOrMouseLockRequest; browser_handler_map_["DenyCurrentFullscreenOrMouseLockRequest"] = &TestingAutomationProvider::DenyCurrentFullscreenOrMouseLockRequest; } scoped_ptr<DictionaryValue> TestingAutomationProvider::ParseJSONRequestCommand( const std::string& json_request, std::string* command, std::string* error) { scoped_ptr<DictionaryValue> dict_value; scoped_ptr<Value> values(base::JSONReader::ReadAndReturnError(json_request, base::JSON_ALLOW_TRAILING_COMMAS, NULL, error)); if (values.get()) { // Make sure input is a dict with a string command. if (values->GetType() != Value::TYPE_DICTIONARY) { *error = "Command dictionary is not a dictionary."; } else { dict_value.reset(static_cast<DictionaryValue*>(values.release())); if (!dict_value->GetStringASCII("command", command)) { *error = "Command key string missing from dictionary."; dict_value.reset(NULL); } } } return dict_value.Pass(); } void TestingAutomationProvider::SendJSONRequestWithBrowserHandle( int handle, const std::string& json_request, IPC::Message* reply_message) { Browser* browser = NULL; if (browser_tracker_->ContainsHandle(handle)) browser = browser_tracker_->GetResource(handle); if (browser || handle < 0) { SendJSONRequest(browser, json_request, reply_message); } else { AutomationJSONReply(this, reply_message).SendError( "The browser window does not exist."); } } void TestingAutomationProvider::SendJSONRequestWithBrowserIndex( int index, const std::string& json_request, IPC::Message* reply_message) { Browser* browser = index < 0 ? NULL : automation_util::GetBrowserAt(index); if (!browser && index >= 0) { AutomationJSONReply(this, reply_message).SendError(base::StringPrintf( "Browser window with index=%d does not exist.", index)); } else { SendJSONRequest(browser, json_request, reply_message); } } void TestingAutomationProvider::SendJSONRequest(Browser* browser, const std::string& json_request, IPC::Message* reply_message) { std::string command, error_string; scoped_ptr<DictionaryValue> dict_value( ParseJSONRequestCommand(json_request, &command, &error_string)); if (!dict_value.get() || command.empty()) { AutomationJSONReply(this, reply_message).SendError(error_string); return; } if (handler_map_.empty() || browser_handler_map_.empty()) BuildJSONHandlerMaps(); // Look for command in handlers that take a Browser. if (browser_handler_map_.find(std::string(command)) != browser_handler_map_.end() && browser) { (this->*browser_handler_map_[command])(browser, dict_value.get(), reply_message); // Look for command in handlers that don't take a Browser. } else if (handler_map_.find(std::string(command)) != handler_map_.end()) { (this->*handler_map_[command])(dict_value.get(), reply_message); // Command has no handler. } else { error_string = base::StringPrintf("Unknown command '%s'. Options: ", command.c_str()); for (std::map<std::string, JsonHandler>::const_iterator it = handler_map_.begin(); it != handler_map_.end(); ++it) { error_string += it->first + ", "; } for (std::map<std::string, BrowserJsonHandler>::const_iterator it = browser_handler_map_.begin(); it != browser_handler_map_.end(); ++it) { error_string += it->first + ", "; } AutomationJSONReply(this, reply_message).SendError(error_string); } } void TestingAutomationProvider::BringBrowserToFrontJSON( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } browser->window()->Activate(); reply.SendSuccess(NULL); } // Sample json input: { "command": "SetWindowDimensions", // "x": 20, # optional // "y": 20, # optional // "width": 800, # optional // "height": 600 } # optional void TestingAutomationProvider::SetWindowDimensions( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { gfx::Rect rect = browser->window()->GetRestoredBounds(); int x, y, width, height; if (args->GetInteger("x", &x)) rect.set_x(x); if (args->GetInteger("y", &y)) rect.set_y(y); if (args->GetInteger("width", &width)) rect.set_width(width); if (args->GetInteger("height", &height)) rect.set_height(height); browser->window()->SetBounds(rect); AutomationJSONReply(this, reply_message).SendSuccess(NULL); } ListValue* TestingAutomationProvider::GetInfobarsInfo(WebContents* wc) { // Each infobar may have different properties depending on the type. ListValue* infobars = new ListValue; InfoBarService* infobar_service = InfoBarService::FromWebContents(wc); for (size_t i = 0; i < infobar_service->GetInfoBarCount(); ++i) { DictionaryValue* infobar_item = new DictionaryValue; InfoBarDelegate* infobar = infobar_service->GetInfoBarDelegateAt(i); switch (infobar->GetInfoBarAutomationType()) { case InfoBarDelegate::CONFIRM_INFOBAR: infobar_item->SetString("type", "confirm_infobar"); break; case InfoBarDelegate::ONE_CLICK_LOGIN_INFOBAR: infobar_item->SetString("type", "oneclicklogin_infobar"); break; case InfoBarDelegate::PASSWORD_INFOBAR: infobar_item->SetString("type", "password_infobar"); break; case InfoBarDelegate::RPH_INFOBAR: infobar_item->SetString("type", "rph_infobar"); break; case InfoBarDelegate::UNKNOWN_INFOBAR: infobar_item->SetString("type", "unknown_infobar"); break; } if (infobar->AsConfirmInfoBarDelegate()) { // Also covers ThemeInstalledInfoBarDelegate. ConfirmInfoBarDelegate* confirm_infobar = infobar->AsConfirmInfoBarDelegate(); infobar_item->SetString("text", confirm_infobar->GetMessageText()); infobar_item->SetString("link_text", confirm_infobar->GetLinkText()); ListValue* buttons_list = new ListValue; int buttons = confirm_infobar->GetButtons(); if (buttons & ConfirmInfoBarDelegate::BUTTON_OK) { StringValue* button_label = new StringValue( confirm_infobar->GetButtonLabel( ConfirmInfoBarDelegate::BUTTON_OK)); buttons_list->Append(button_label); } if (buttons & ConfirmInfoBarDelegate::BUTTON_CANCEL) { StringValue* button_label = new StringValue( confirm_infobar->GetButtonLabel( ConfirmInfoBarDelegate::BUTTON_CANCEL)); buttons_list->Append(button_label); } infobar_item->Set("buttons", buttons_list); } else if (infobar->AsExtensionInfoBarDelegate()) { infobar_item->SetString("type", "extension_infobar"); } else { infobar_item->SetString("type", "unknown_infobar"); } infobars->Append(infobar_item); } return infobars; } // Sample json input: { "command": "PerformActionOnInfobar", // "action": "dismiss", // "infobar_index": 0, // "tab_index": 0 } // Sample output: {} void TestingAutomationProvider::PerformActionOnInfobar( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); int tab_index; int infobar_index_int; std::string action; if (!args->GetInteger("tab_index", &tab_index) || !args->GetInteger("infobar_index", &infobar_index_int) || !args->GetString("action", &action)) { reply.SendError("Invalid or missing args"); return; } WebContents* web_contents = browser->tab_strip_model()->GetWebContentsAt(tab_index); if (!web_contents) { reply.SendError(base::StringPrintf("No such tab at index %d", tab_index)); return; } InfoBarService* infobar_service = InfoBarService::FromWebContents(web_contents); InfoBarDelegate* infobar = NULL; size_t infobar_index = static_cast<size_t>(infobar_index_int); if (infobar_index >= infobar_service->GetInfoBarCount()) { reply.SendError(base::StringPrintf("No such infobar at index %" PRIuS, infobar_index)); return; } infobar = infobar_service->GetInfoBarDelegateAt(infobar_index); if ("dismiss" == action) { infobar->InfoBarDismissed(); infobar_service->RemoveInfoBar(infobar); reply.SendSuccess(NULL); return; } if ("accept" == action || "cancel" == action) { ConfirmInfoBarDelegate* confirm_infobar; if (!(confirm_infobar = infobar->AsConfirmInfoBarDelegate())) { reply.SendError("Not a confirm infobar"); return; } if ("accept" == action) { if (confirm_infobar->Accept()) infobar_service->RemoveInfoBar(infobar); } else if ("cancel" == action) { if (confirm_infobar->Cancel()) infobar_service->RemoveInfoBar(infobar); } reply.SendSuccess(NULL); return; } reply.SendError("Invalid action"); } namespace { // Gets info about BrowserChildProcessHost. Must run on IO thread to // honor the semantics of BrowserChildProcessHostIterator. // Used by AutomationProvider::GetBrowserInfo(). void GetChildProcessHostInfo(ListValue* child_processes) { for (BrowserChildProcessHostIterator iter; !iter.Done(); ++iter) { // Only add processes which are already started, since we need their handle. if (iter.GetData().handle == base::kNullProcessHandle) continue; DictionaryValue* item = new DictionaryValue; item->SetString("name", iter.GetData().name); item->SetString( "type", content::GetProcessTypeNameInEnglish(iter.GetData().process_type)); item->SetInteger("pid", base::GetProcId(iter.GetData().handle)); child_processes->Append(item); } } } // namespace // Sample json input: { "command": "GetBrowserInfo" } // Refer to GetBrowserInfo() in chrome/test/pyautolib/pyauto.py for // sample json output. void TestingAutomationProvider::GetBrowserInfo( DictionaryValue* args, IPC::Message* reply_message) { base::ThreadRestrictions::ScopedAllowIO allow_io; // needed for PathService DictionaryValue* properties = new DictionaryValue; properties->SetString("ChromeVersion", chrome::kChromeVersion); properties->SetString("BrowserProcessExecutableName", chrome::kBrowserProcessExecutableName); properties->SetString("HelperProcessExecutableName", chrome::kHelperProcessExecutableName); properties->SetString("BrowserProcessExecutablePath", chrome::kBrowserProcessExecutablePath); properties->SetString("HelperProcessExecutablePath", chrome::kHelperProcessExecutablePath); properties->SetString("command_line_string", CommandLine::ForCurrentProcess()->GetCommandLineString()); base::FilePath dumps_path; PathService::Get(chrome::DIR_CRASH_DUMPS, &dumps_path); properties->SetString("DIR_CRASH_DUMPS", dumps_path.value()); #if defined(USE_AURA) properties->SetBoolean("aura", true); #else properties->SetBoolean("aura", false); #endif std::string branding; #if defined(GOOGLE_CHROME_BUILD) branding = "Google Chrome"; #elif defined(CHROMIUM_BUILD) branding = "Chromium"; #else branding = "Unknown Branding"; #endif properties->SetString("branding", branding); bool is_official_build = false; #if defined(OFFICIAL_BUILD) is_official_build = true; #endif properties->SetBoolean("is_official", is_official_build); scoped_ptr<DictionaryValue> return_value(new DictionaryValue); return_value->Set("properties", properties); return_value->SetInteger("browser_pid", base::GetCurrentProcId()); // Add info about all windows in a list of dictionaries, one dictionary // item per window. ListValue* windows = new ListValue; int windex = 0; for (chrome::BrowserIterator it; !it.done(); it.Next(), ++windex) { DictionaryValue* browser_item = new DictionaryValue; Browser* browser = *it; browser_item->SetInteger("index", windex); // Window properties gfx::Rect rect = browser->window()->GetRestoredBounds(); browser_item->SetInteger("x", rect.x()); browser_item->SetInteger("y", rect.y()); browser_item->SetInteger("width", rect.width()); browser_item->SetInteger("height", rect.height()); browser_item->SetBoolean("fullscreen", browser->window()->IsFullscreen()); ListValue* visible_page_actions = new ListValue; // Add info about all visible page actions. Skipped on panels, which do not // have a location bar. LocationBar* loc_bar = browser->window()->GetLocationBar(); if (loc_bar) { LocationBarTesting* loc_bar_test = loc_bar->GetLocationBarForTesting(); size_t page_action_visible_count = static_cast<size_t>(loc_bar_test->PageActionVisibleCount()); for (size_t i = 0; i < page_action_visible_count; ++i) { StringValue* extension_id = new StringValue( loc_bar_test->GetVisiblePageAction(i)->extension_id()); visible_page_actions->Append(extension_id); } } browser_item->Set("visible_page_actions", visible_page_actions); browser_item->SetInteger("selected_tab", browser->tab_strip_model()->active_index()); browser_item->SetBoolean("incognito", browser->profile()->IsOffTheRecord()); browser_item->SetString("profile_path", browser->profile()->GetPath().BaseName().MaybeAsASCII()); std::string type; switch (browser->type()) { case Browser::TYPE_TABBED: type = "tabbed"; break; case Browser::TYPE_POPUP: type = "popup"; break; default: type = "unknown"; break; } browser_item->SetString("type", type); // For each window, add info about all tabs in a list of dictionaries, // one dictionary item per tab. ListValue* tabs = new ListValue; for (int i = 0; i < browser->tab_strip_model()->count(); ++i) { WebContents* wc = browser->tab_strip_model()->GetWebContentsAt(i); DictionaryValue* tab = new DictionaryValue; tab->SetInteger("index", i); tab->SetString("url", wc->GetURL().spec()); tab->SetInteger("renderer_pid", base::GetProcId(wc->GetRenderProcessHost()->GetHandle())); tab->Set("infobars", GetInfobarsInfo(wc)); tab->SetBoolean("pinned", browser->tab_strip_model()->IsTabPinned(i)); tabs->Append(tab); } browser_item->Set("tabs", tabs); windows->Append(browser_item); } return_value->Set("windows", windows); #if defined(OS_LINUX) int flags = ChildProcessHost::CHILD_ALLOW_SELF; #else int flags = ChildProcessHost::CHILD_NORMAL; #endif // Add all extension processes in a list of dictionaries, one dictionary // item per extension process. ListValue* extension_views = new ListValue; ProfileManager* profile_manager = g_browser_process->profile_manager(); std::vector<Profile*> profiles(profile_manager->GetLoadedProfiles()); for (size_t i = 0; i < profiles.size(); ++i) { ExtensionProcessManager* process_manager = extensions::ExtensionSystem::Get(profiles[i])->process_manager(); if (!process_manager) continue; const ExtensionProcessManager::ViewSet view_set = process_manager->GetAllViews(); for (ExtensionProcessManager::ViewSet::const_iterator jt = view_set.begin(); jt != view_set.end(); ++jt) { content::RenderViewHost* render_view_host = *jt; // Don't add dead extension processes. if (!render_view_host->IsRenderViewLive()) continue; // Don't add views for which we can't obtain an extension. // TODO(benwells): work out why this happens. It only happens for one // test, and only on the bots. const Extension* extension = process_manager->GetExtensionForRenderViewHost(render_view_host); if (!extension) continue; DictionaryValue* item = new DictionaryValue; item->SetString("name", extension->name()); item->SetString("extension_id", extension->id()); item->SetInteger( "pid", base::GetProcId(render_view_host->GetProcess()->GetHandle())); DictionaryValue* view = new DictionaryValue; view->SetInteger( "render_process_id", render_view_host->GetProcess()->GetID()); view->SetInteger( "render_view_id", render_view_host->GetRoutingID()); item->Set("view", view); std::string type; WebContents* web_contents = WebContents::FromRenderViewHost(render_view_host); extensions::ViewType view_type = extensions::GetViewType(web_contents); switch (view_type) { case extensions::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE: type = "EXTENSION_BACKGROUND_PAGE"; break; case extensions::VIEW_TYPE_EXTENSION_POPUP: type = "EXTENSION_POPUP"; break; case extensions::VIEW_TYPE_EXTENSION_INFOBAR: type = "EXTENSION_INFOBAR"; break; case extensions::VIEW_TYPE_EXTENSION_DIALOG: type = "EXTENSION_DIALOG"; break; case extensions::VIEW_TYPE_APP_SHELL: type = "APP_SHELL"; break; case extensions::VIEW_TYPE_PANEL: type = "PANEL"; break; default: type = "unknown"; break; } item->SetString("view_type", type); item->SetString("url", web_contents->GetURL().spec()); item->SetBoolean("loaded", !render_view_host->IsLoading()); extension_views->Append(item); } } return_value->Set("extension_views", extension_views); return_value->SetString("child_process_path", ChildProcessHost::GetChildPath(flags).value()); // Child processes are the processes for plugins and other workers. // Add all child processes in a list of dictionaries, one dictionary item // per child process. ListValue* child_processes = new ListValue; return_value->Set("child_processes", child_processes); BrowserThread::PostTaskAndReply( BrowserThread::IO, FROM_HERE, base::Bind(&GetChildProcessHostInfo, child_processes), base::Bind(&AutomationJSONReply::SendSuccess, base::Owned(new AutomationJSONReply(this, reply_message)), base::Owned(return_value.release()))); } // Sample json input: { "command": "GetProcessInfo" } // Refer to GetProcessInfo() in chrome/test/pyautolib/pyauto.py for // sample json output. void TestingAutomationProvider::GetProcessInfo( DictionaryValue* args, IPC::Message* reply_message) { scoped_refptr<ProcessInfoObserver> proc_observer(new ProcessInfoObserver(this, reply_message)); // TODO(jamescook): Maybe this shouldn't update UMA stats? proc_observer->StartFetch(MemoryDetails::UPDATE_USER_METRICS); } // Sample json input: { "command": "GetNavigationInfo" } // Refer to GetNavigationInfo() in chrome/test/pyautolib/pyauto.py for // sample json output. void TestingAutomationProvider::GetNavigationInfo( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); int tab_index; WebContents* web_contents = NULL; if (!args->GetInteger("tab_index", &tab_index) || !(web_contents = browser->tab_strip_model()->GetWebContentsAt(tab_index))) { reply.SendError("tab_index missing or invalid."); return; } scoped_ptr<DictionaryValue> return_value(new DictionaryValue); const NavigationController& controller = web_contents->GetController(); NavigationEntry* nav_entry = controller.GetActiveEntry(); DCHECK(nav_entry); // Security info. DictionaryValue* ssl = new DictionaryValue; std::map<content::SecurityStyle, std::string> style_to_string; style_to_string[content::SECURITY_STYLE_UNKNOWN] = "SECURITY_STYLE_UNKNOWN"; style_to_string[content::SECURITY_STYLE_UNAUTHENTICATED] = "SECURITY_STYLE_UNAUTHENTICATED"; style_to_string[content::SECURITY_STYLE_AUTHENTICATION_BROKEN] = "SECURITY_STYLE_AUTHENTICATION_BROKEN"; style_to_string[content::SECURITY_STYLE_AUTHENTICATED] = "SECURITY_STYLE_AUTHENTICATED"; SSLStatus ssl_status = nav_entry->GetSSL(); ssl->SetString("security_style", style_to_string[ssl_status.security_style]); ssl->SetBoolean("ran_insecure_content", !!(ssl_status.content_status & SSLStatus::RAN_INSECURE_CONTENT)); ssl->SetBoolean("displayed_insecure_content", !!(ssl_status.content_status & SSLStatus::DISPLAYED_INSECURE_CONTENT)); return_value->Set("ssl", ssl); // Page type. std::map<content::PageType, std::string> pagetype_to_string; pagetype_to_string[content::PAGE_TYPE_NORMAL] = "NORMAL_PAGE"; pagetype_to_string[content::PAGE_TYPE_ERROR] = "ERROR_PAGE"; pagetype_to_string[content::PAGE_TYPE_INTERSTITIAL] = "INTERSTITIAL_PAGE"; return_value->SetString("page_type", pagetype_to_string[nav_entry->GetPageType()]); return_value->SetString("favicon_url", nav_entry->GetFavicon().url.spec()); reply.SendSuccess(return_value.get()); } // Sample json input: { "command": "GetHistoryInfo", // "search_text": "some text" } // Refer chrome/test/pyautolib/history_info.py for sample json output. void TestingAutomationProvider::GetHistoryInfo(Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { consumer_.CancelAllRequests(); string16 search_text; args->GetString("search_text", &search_text); // Fetch history. HistoryService* hs = HistoryServiceFactory::GetForProfile( browser->profile(), Profile::EXPLICIT_ACCESS); history::QueryOptions options; // The observer owns itself. It deletes itself after it fetches history. AutomationProviderHistoryObserver* history_observer = new AutomationProviderHistoryObserver(this, reply_message); hs->QueryHistory( search_text, options, &consumer_, base::Bind(&AutomationProviderHistoryObserver::HistoryQueryComplete, base::Unretained(history_observer))); } // Sample json input: { "command": "GetDownloadsInfo" } // Refer chrome/test/pyautolib/download_info.py for sample json output. void TestingAutomationProvider::GetDownloadsInfo(Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); scoped_ptr<DictionaryValue> return_value(new DictionaryValue); ListValue* list_of_downloads = new ListValue; DownloadService* download_service( DownloadServiceFactory::GetForProfile(browser->profile())); if (download_service->HasCreatedDownloadManager()) { std::vector<DownloadItem*> downloads; BrowserContext::GetDownloadManager(browser->profile())->GetAllDownloads( &downloads); for (std::vector<DownloadItem*>::iterator it = downloads.begin(); it != downloads.end(); it++) { // Fill info about each download item. list_of_downloads->Append(GetDictionaryFromDownloadItem( *it, browser->profile()->IsOffTheRecord())); } } return_value->Set("downloads", list_of_downloads); reply.SendSuccess(return_value.get()); } void TestingAutomationProvider::WaitForAllDownloadsToComplete( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { ListValue* pre_download_ids = NULL; if (!args->GetList("pre_download_ids", &pre_download_ids)) { AutomationJSONReply(this, reply_message) .SendError( base::StringPrintf("List of IDs of previous downloads required.")); return; } DownloadService* download_service = DownloadServiceFactory::GetForProfile(browser->profile()); if (!download_service->HasCreatedDownloadManager()) { // No download manager, so no downloads to wait for. AutomationJSONReply(this, reply_message).SendSuccess(NULL); return; } // This observer will delete itself. new AllDownloadsCompleteObserver( this, reply_message, BrowserContext::GetDownloadManager(browser->profile()), pre_download_ids); } // See PerformActionOnDownload() in chrome/test/pyautolib/pyauto.py for sample // json input and output. void TestingAutomationProvider::PerformActionOnDownload( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { int id; std::string action; DownloadService* download_service = DownloadServiceFactory::GetForProfile(browser->profile()); if (!download_service->HasCreatedDownloadManager()) { AutomationJSONReply(this, reply_message).SendError("No download manager."); return; } if (!args->GetInteger("id", &id) || !args->GetString("action", &action)) { AutomationJSONReply(this, reply_message) .SendError("Must include int id and string action."); return; } DownloadManager* download_manager = BrowserContext::GetDownloadManager(browser->profile()); DownloadItem* selected_item = download_manager->GetDownload(id); if (!selected_item) { AutomationJSONReply(this, reply_message) .SendError(base::StringPrintf("No download with an id of %d\n", id)); return; } // We need to be IN_PROGRESS for these actions. if ((action == "pause" || action == "resume" || action == "cancel") && !selected_item->IsInProgress()) { AutomationJSONReply(this, reply_message) .SendError("Selected DownloadItem is not in progress."); } if (action == "open") { selected_item->AddObserver( new AutomationProviderDownloadUpdatedObserver( this, reply_message, true, browser->profile()->IsOffTheRecord())); selected_item->OpenDownload(); } else if (action == "toggle_open_files_like_this") { DownloadPrefs* prefs = DownloadPrefs::FromBrowserContext(selected_item->GetBrowserContext()); base::FilePath path = selected_item->GetUserVerifiedFilePath(); if (!selected_item->ShouldOpenFileBasedOnExtension()) prefs->EnableAutoOpenBasedOnExtension(path); else prefs->DisableAutoOpenBasedOnExtension(path); AutomationJSONReply(this, reply_message).SendSuccess(NULL); } else if (action == "remove") { new AutomationProviderDownloadModelChangedObserver( this, reply_message, download_manager); selected_item->Remove(); } else if (action == "decline_dangerous_download") { new AutomationProviderDownloadModelChangedObserver( this, reply_message, download_manager); selected_item->Delete(DownloadItem::DELETE_DUE_TO_USER_DISCARD); } else if (action == "save_dangerous_download") { selected_item->AddObserver(new AutomationProviderDownloadUpdatedObserver( this, reply_message, false, browser->profile()->IsOffTheRecord())); selected_item->DangerousDownloadValidated(); } else if (action == "pause") { if (!selected_item->IsInProgress() || selected_item->IsPaused()) { // Action would be a no-op; respond right from here. No-op implies // the test is poorly written or failing, so make it an error return. if (!selected_item->IsInProgress()) { AutomationJSONReply(this, reply_message) .SendError("Action 'pause' called on download in termal state."); } else { AutomationJSONReply(this, reply_message) .SendError("Action 'pause' called on already paused download."); } } else { selected_item->AddObserver(new AutomationProviderDownloadUpdatedObserver( this, reply_message, false, browser->profile()->IsOffTheRecord())); selected_item->Pause(); } } else if (action == "resume") { if (!selected_item->IsInProgress() || !selected_item->IsPaused()) { // Action would be a no-op; respond right from here. No-op implies // the test is poorly written or failing, so make it an error return. if (!selected_item->IsInProgress()) { AutomationJSONReply(this, reply_message) .SendError("Action 'resume' called on download in termal state."); } else { AutomationJSONReply(this, reply_message) .SendError("Action 'resume' called on unpaused download."); } } else { selected_item->AddObserver(new AutomationProviderDownloadUpdatedObserver( this, reply_message, false, browser->profile()->IsOffTheRecord())); selected_item->Resume(); } } else if (action == "cancel") { selected_item->AddObserver(new AutomationProviderDownloadUpdatedObserver( this, reply_message, false, browser->profile()->IsOffTheRecord())); selected_item->Cancel(true); } else { AutomationJSONReply(this, reply_message) .SendError( base::StringPrintf("Invalid action '%s' given.", action.c_str())); } } void TestingAutomationProvider::SetDownloadShelfVisibleJSON( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; bool is_visible; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } if (!args->GetBoolean("is_visible", &is_visible)) { reply.SendError("'is_visible' missing or invalid."); return; } if (is_visible) { browser->window()->GetDownloadShelf()->Show(); } else { browser->window()->GetDownloadShelf()->Close(DownloadShelf::AUTOMATIC); } reply.SendSuccess(NULL); } void TestingAutomationProvider::IsDownloadShelfVisibleJSON( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } DictionaryValue dict; dict.SetBoolean("is_visible", browser->window()->IsDownloadShelfVisible()); reply.SendSuccess(&dict); } void TestingAutomationProvider::GetDownloadDirectoryJSON( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); WebContents* web_contents; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { reply.SendError(error); return; } DownloadManager* dlm = BrowserContext::GetDownloadManager( web_contents->GetController().GetBrowserContext()); DictionaryValue dict; dict.SetString("path", DownloadPrefs::FromDownloadManager(dlm)->DownloadPath().value()); reply.SendSuccess(&dict); } // Sample JSON input { "command": "LoadSearchEngineInfo" } void TestingAutomationProvider::LoadSearchEngineInfo( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { TemplateURLService* url_model = TemplateURLServiceFactory::GetForProfile(browser->profile()); if (url_model->loaded()) { AutomationJSONReply(this, reply_message).SendSuccess(NULL); return; } url_model->AddObserver(new AutomationProviderSearchEngineObserver( this, browser->profile(), reply_message)); url_model->Load(); } // Sample JSON input { "command": "GetSearchEngineInfo" } // Refer to pyauto.py for sample output. void TestingAutomationProvider::GetSearchEngineInfo( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { TemplateURLService* url_model = TemplateURLServiceFactory::GetForProfile(browser->profile()); scoped_ptr<DictionaryValue> return_value(new DictionaryValue); ListValue* search_engines = new ListValue; TemplateURLService::TemplateURLVector template_urls = url_model->GetTemplateURLs(); for (TemplateURLService::TemplateURLVector::const_iterator it = template_urls.begin(); it != template_urls.end(); ++it) { DictionaryValue* search_engine = new DictionaryValue; search_engine->SetString("short_name", UTF16ToUTF8((*it)->short_name())); search_engine->SetString("keyword", UTF16ToUTF8((*it)->keyword())); search_engine->SetBoolean("in_default_list", (*it)->ShowInDefaultList()); search_engine->SetBoolean("is_default", (*it) == url_model->GetDefaultSearchProvider()); search_engine->SetBoolean("is_valid", (*it)->url_ref().IsValid()); search_engine->SetBoolean("supports_replacement", (*it)->url_ref().SupportsReplacement()); search_engine->SetString("url", (*it)->url()); search_engine->SetString("host", (*it)->url_ref().GetHost()); search_engine->SetString("path", (*it)->url_ref().GetPath()); search_engine->SetString("display_url", UTF16ToUTF8((*it)->url_ref().DisplayURL())); search_engines->Append(search_engine); } return_value->Set("search_engines", search_engines); AutomationJSONReply(this, reply_message).SendSuccess(return_value.get()); } // Refer to pyauto.py for sample JSON input. void TestingAutomationProvider::AddOrEditSearchEngine( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { TemplateURLService* url_model = TemplateURLServiceFactory::GetForProfile(browser->profile()); string16 new_title; string16 new_keyword; std::string new_url; std::string keyword; if (!args->GetString("new_title", &new_title) || !args->GetString("new_keyword", &new_keyword) || !args->GetString("new_url", &new_url)) { AutomationJSONReply(this, reply_message).SendError( "One or more inputs invalid"); return; } std::string new_ref_url = TemplateURLRef::DisplayURLToURLRef( UTF8ToUTF16(new_url)); scoped_ptr<KeywordEditorController> controller( new KeywordEditorController(browser->profile())); if (args->GetString("keyword", &keyword)) { TemplateURL* template_url = url_model->GetTemplateURLForKeyword(UTF8ToUTF16(keyword)); if (template_url == NULL) { AutomationJSONReply(this, reply_message).SendError( "No match for keyword: " + keyword); return; } url_model->AddObserver(new AutomationProviderSearchEngineObserver( this, browser->profile(), reply_message)); controller->ModifyTemplateURL(template_url, new_title, new_keyword, new_ref_url); } else { url_model->AddObserver(new AutomationProviderSearchEngineObserver( this, browser->profile(), reply_message)); controller->AddTemplateURL(new_title, new_keyword, new_ref_url); } } // Sample json input: { "command": "PerformActionOnSearchEngine", // "keyword": keyword, "action": action } void TestingAutomationProvider::PerformActionOnSearchEngine( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { TemplateURLService* url_model = TemplateURLServiceFactory::GetForProfile(browser->profile()); std::string keyword; std::string action; if (!args->GetString("keyword", &keyword) || !args->GetString("action", &action)) { AutomationJSONReply(this, reply_message).SendError( "One or more inputs invalid"); return; } TemplateURL* template_url = url_model->GetTemplateURLForKeyword(UTF8ToUTF16(keyword)); if (template_url == NULL) { AutomationJSONReply(this, reply_message).SendError( "No match for keyword: " + keyword); return; } if (action == "delete") { url_model->AddObserver(new AutomationProviderSearchEngineObserver( this, browser->profile(), reply_message)); url_model->Remove(template_url); } else if (action == "default") { url_model->AddObserver(new AutomationProviderSearchEngineObserver( this, browser->profile(), reply_message)); url_model->SetDefaultSearchProvider(template_url); } else { AutomationJSONReply(this, reply_message).SendError( "Invalid action: " + action); } } // Sample json input: { "command": "GetLocalStatePrefsInfo" } // Refer chrome/test/pyautolib/prefs_info.py for sample json output. void TestingAutomationProvider::GetLocalStatePrefsInfo( DictionaryValue* args, IPC::Message* reply_message) { DictionaryValue* items = g_browser_process->local_state()-> GetPreferenceValues(); scoped_ptr<DictionaryValue> return_value(new DictionaryValue); return_value->Set("prefs", items); // return_value owns items. AutomationJSONReply(this, reply_message).SendSuccess(return_value.get()); } // Sample json input: { "command": "SetLocalStatePrefs", "path": path, // "value": value } void TestingAutomationProvider::SetLocalStatePrefs( DictionaryValue* args, IPC::Message* reply_message) { std::string path; Value* val = NULL; AutomationJSONReply reply(this, reply_message); if (args->GetString("path", &path) && args->Get("value", &val)) { PrefService* pref_service = g_browser_process->local_state(); const PrefService::Preference* pref = pref_service->FindPreference(path.c_str()); if (!pref) { // Not a registered pref. reply.SendError("pref not registered."); return; } else if (pref->IsManaged()) { // Do not attempt to change a managed pref. reply.SendError("pref is managed. cannot be changed."); return; } else { // Set the pref. pref_service->Set(path.c_str(), *val); } } else { reply.SendError("no pref path or value given."); return; } reply.SendSuccess(NULL); } // Sample json input: { "command": "GetPrefsInfo", "windex": 0 } // Refer chrome/test/pyautolib/prefs_info.py for sample json output. void TestingAutomationProvider::GetPrefsInfo(DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } DictionaryValue* items = browser->profile()->GetPrefs()-> GetPreferenceValues(); scoped_ptr<DictionaryValue> return_value(new DictionaryValue); return_value->Set("prefs", items); // return_value owns items. reply.SendSuccess(return_value.get()); } // Sample json input: // { "command": "SetPrefs", // "windex": 0, // "path": path, // "value": value } void TestingAutomationProvider::SetPrefs(DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } std::string path; Value* val = NULL; if (args->GetString("path", &path) && args->Get("value", &val)) { PrefService* pref_service = browser->profile()->GetPrefs(); const PrefService::Preference* pref = pref_service->FindPreference(path.c_str()); if (!pref) { // Not a registered pref. reply.SendError("pref not registered."); return; } else if (pref->IsManaged()) { // Do not attempt to change a managed pref. reply.SendError("pref is managed. cannot be changed."); return; } else { // Set the pref. pref_service->Set(path.c_str(), *val); } } else { reply.SendError("no pref path or value given."); return; } reply.SendSuccess(NULL); } // Sample json input: { "command": "GetOmniboxInfo" } // Refer chrome/test/pyautolib/omnibox_info.py for sample json output. void TestingAutomationProvider::GetOmniboxInfo(Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { scoped_ptr<DictionaryValue> return_value(new DictionaryValue); AutomationJSONReply reply(this, reply_message); LocationBar* loc_bar = browser->window()->GetLocationBar(); if (!loc_bar) { reply.SendError("The specified browser does not have a location bar."); return; } const OmniboxView* omnibox_view = loc_bar->GetLocationEntry(); const OmniboxEditModel* model = omnibox_view->model(); // Fill up matches. ListValue* matches = new ListValue; const AutocompleteResult& result = model->result(); for (AutocompleteResult::const_iterator i(result.begin()); i != result.end(); ++i) { const AutocompleteMatch& match = *i; DictionaryValue* item = new DictionaryValue; // owned by return_value item->SetString("type", AutocompleteMatch::TypeToString(match.type)); item->SetBoolean("starred", match.starred); item->SetString("destination_url", match.destination_url.spec()); item->SetString("contents", match.contents); item->SetString("description", match.description); matches->Append(item); } return_value->Set("matches", matches); // Fill up other properties. DictionaryValue* properties = new DictionaryValue; // owned by return_value properties->SetBoolean("has_focus", model->has_focus()); properties->SetBoolean("query_in_progress", !model->autocomplete_controller()->done()); properties->SetString("keyword", model->keyword()); properties->SetString("text", omnibox_view->GetText()); return_value->Set("properties", properties); reply.SendSuccess(return_value.get()); } // Sample json input: { "command": "SetOmniboxText", // "text": "goog" } void TestingAutomationProvider::SetOmniboxText(Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { string16 text; AutomationJSONReply reply(this, reply_message); if (!args->GetString("text", &text)) { reply.SendError("text missing"); return; } chrome::FocusLocationBar(browser); LocationBar* loc_bar = browser->window()->GetLocationBar(); if (!loc_bar) { reply.SendError("The specified browser does not have a location bar."); return; } OmniboxView* omnibox_view = loc_bar->GetLocationEntry(); omnibox_view->model()->OnSetFocus(false); omnibox_view->SetUserText(text); reply.SendSuccess(NULL); } // Sample json input: { "command": "OmniboxMovePopupSelection", // "count": 1 } // Negative count implies up, positive implies down. Count values will be // capped by the size of the popup list. void TestingAutomationProvider::OmniboxMovePopupSelection( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { int count; AutomationJSONReply reply(this, reply_message); if (!args->GetInteger("count", &count)) { reply.SendError("count missing"); return; } LocationBar* loc_bar = browser->window()->GetLocationBar(); if (!loc_bar) { reply.SendError("The specified browser does not have a location bar."); return; } loc_bar->GetLocationEntry()->model()->OnUpOrDownKeyPressed(count); reply.SendSuccess(NULL); } // Sample json input: { "command": "OmniboxAcceptInput" } void TestingAutomationProvider::OmniboxAcceptInput( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { NavigationController& controller = browser->tab_strip_model()->GetActiveWebContents()->GetController(); LocationBar* loc_bar = browser->window()->GetLocationBar(); if (!loc_bar) { AutomationJSONReply(this, reply_message).SendError( "The specified browser does not have a location bar."); return; } new OmniboxAcceptNotificationObserver(&controller, this, reply_message); loc_bar->AcceptInput(); } // Sample json input: { "command": "GetInitialLoadTimes" } // Refer to InitialLoadObserver::GetTimingInformation() for sample output. void TestingAutomationProvider::GetInitialLoadTimes( Browser*, DictionaryValue*, IPC::Message* reply_message) { scoped_ptr<DictionaryValue> return_value( initial_load_observer_->GetTimingInformation()); std::string json_return; base::JSONWriter::Write(return_value.get(), &json_return); AutomationMsg_SendJSONRequest::WriteReplyParams( reply_message, json_return, true); Send(reply_message); } // Sample json input: { "command": "GetPluginsInfo" } // Refer chrome/test/pyautolib/plugins_info.py for sample json output. void TestingAutomationProvider::GetPluginsInfo( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { PluginService::GetInstance()->GetPlugins( base::Bind(&TestingAutomationProvider::GetPluginsInfoCallback, this, browser, args, reply_message)); } void TestingAutomationProvider::GetPluginsInfoCallback( Browser* browser, DictionaryValue* args, IPC::Message* reply_message, const std::vector<webkit::WebPluginInfo>& plugins) { PluginPrefs* plugin_prefs = PluginPrefs::GetForProfile(browser->profile()); ListValue* items = new ListValue; for (std::vector<webkit::WebPluginInfo>::const_iterator it = plugins.begin(); it != plugins.end(); ++it) { DictionaryValue* item = new DictionaryValue; item->SetString("name", it->name); item->SetString("path", it->path.value()); item->SetString("version", it->version); item->SetString("desc", it->desc); item->SetBoolean("enabled", plugin_prefs->IsPluginEnabled(*it)); // Add info about mime types. ListValue* mime_types = new ListValue(); for (std::vector<webkit::WebPluginMimeType>::const_iterator type_it = it->mime_types.begin(); type_it != it->mime_types.end(); ++type_it) { DictionaryValue* mime_type = new DictionaryValue(); mime_type->SetString("mimeType", type_it->mime_type); mime_type->SetString("description", type_it->description); ListValue* file_extensions = new ListValue(); for (std::vector<std::string>::const_iterator ext_it = type_it->file_extensions.begin(); ext_it != type_it->file_extensions.end(); ++ext_it) { file_extensions->Append(new StringValue(*ext_it)); } mime_type->Set("fileExtensions", file_extensions); mime_types->Append(mime_type); } item->Set("mimeTypes", mime_types); items->Append(item); } scoped_ptr<DictionaryValue> return_value(new DictionaryValue); return_value->Set("plugins", items); // return_value owns items. AutomationJSONReply(this, reply_message).SendSuccess(return_value.get()); } // Sample json input: // { "command": "EnablePlugin", // "path": "/Library/Internet Plug-Ins/Flash Player.plugin" } void TestingAutomationProvider::EnablePlugin(Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { base::FilePath::StringType path; if (!args->GetString("path", &path)) { AutomationJSONReply(this, reply_message).SendError("path not specified."); return; } PluginPrefs* plugin_prefs = PluginPrefs::GetForProfile(browser->profile()); plugin_prefs->EnablePlugin(true, base::FilePath(path), base::Bind(&DidEnablePlugin, AsWeakPtr(), reply_message, path, "Could not enable plugin for path %s.")); } // Sample json input: // { "command": "DisablePlugin", // "path": "/Library/Internet Plug-Ins/Flash Player.plugin" } void TestingAutomationProvider::DisablePlugin(Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { base::FilePath::StringType path; if (!args->GetString("path", &path)) { AutomationJSONReply(this, reply_message).SendError("path not specified."); return; } PluginPrefs* plugin_prefs = PluginPrefs::GetForProfile(browser->profile()); plugin_prefs->EnablePlugin(false, base::FilePath(path), base::Bind(&DidEnablePlugin, AsWeakPtr(), reply_message, path, "Could not disable plugin for path %s.")); } // Sample json input: // { "command": "SaveTabContents", // "tab_index": 0, // "filename": <a full pathname> } // Sample json output: // {} void TestingAutomationProvider::SaveTabContents( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { int tab_index = 0; base::FilePath::StringType filename; base::FilePath::StringType parent_directory; WebContents* web_contents = NULL; if (!args->GetInteger("tab_index", &tab_index) || !args->GetString("filename", &filename)) { AutomationJSONReply(this, reply_message) .SendError("tab_index or filename param missing"); return; } else { web_contents = browser->tab_strip_model()->GetWebContentsAt(tab_index); if (!web_contents) { AutomationJSONReply(this, reply_message).SendError("no tab at tab_index"); return; } } // We're doing a SAVE_AS_ONLY_HTML so the the directory path isn't // used. Nevertheless, SavePackage requires it be valid. Sigh. parent_directory = base::FilePath(filename).DirName().value(); if (!web_contents->SavePage( base::FilePath(filename), base::FilePath(parent_directory), content::SAVE_PAGE_TYPE_AS_ONLY_HTML)) { AutomationJSONReply(this, reply_message).SendError( "Could not initiate SavePage"); return; } // The observer will delete itself when done. new SavePackageNotificationObserver( BrowserContext::GetDownloadManager(browser->profile()), this, reply_message); } // Refer to ImportSettings() in chrome/test/pyautolib/pyauto.py for sample // json input. // Sample json output: "{}" void TestingAutomationProvider::ImportSettings(Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { // Map from the json string passed over to the import item masks. std::map<std::string, importer::ImportItem> string_to_import_item; string_to_import_item["HISTORY"] = importer::HISTORY; string_to_import_item["FAVORITES"] = importer::FAVORITES; string_to_import_item["COOKIES"] = importer::COOKIES; string_to_import_item["PASSWORDS"] = importer::PASSWORDS; string_to_import_item["SEARCH_ENGINES"] = importer::SEARCH_ENGINES; string_to_import_item["HOME_PAGE"] = importer::HOME_PAGE; string_to_import_item["ALL"] = importer::ALL; ListValue* import_items_list = NULL; if (!args->GetString("import_from", &import_settings_data_.browser_name) || !args->GetBoolean("first_run", &import_settings_data_.first_run) || !args->GetList("import_items", &import_items_list)) { AutomationJSONReply(this, reply_message) .SendError("Incorrect type for one or more of the arguments."); return; } import_settings_data_.import_items = 0; int num_items = import_items_list->GetSize(); for (int i = 0; i < num_items; i++) { std::string item; // If the provided string is not part of the map, error out. if (!import_items_list->GetString(i, &item) || !ContainsKey(string_to_import_item, item)) { AutomationJSONReply(this, reply_message) .SendError("Invalid item string found in import_items."); return; } import_settings_data_.import_items |= string_to_import_item[item]; } import_settings_data_.browser = browser; import_settings_data_.reply_message = reply_message; importer_list_ = new ImporterList(NULL); importer_list_->DetectSourceProfiles(this); } namespace { // Translates a dictionary password to a PasswordForm struct. content::PasswordForm GetPasswordFormFromDict( const DictionaryValue& password_dict) { // If the time is specified, change time to the specified time. base::Time time = base::Time::Now(); int it; double dt; if (password_dict.GetInteger("time", &it)) time = base::Time::FromTimeT(it); else if (password_dict.GetDouble("time", &dt)) time = base::Time::FromDoubleT(dt); std::string signon_realm; string16 username_value; string16 password_value; string16 origin_url_text; string16 username_element; string16 password_element; string16 submit_element; string16 action_target_text; bool blacklist; string16 old_password_element; string16 old_password_value; // We don't care if any of these fail - they are either optional or checked // before this function is called. password_dict.GetString("signon_realm", &signon_realm); password_dict.GetString("username_value", &username_value); password_dict.GetString("password_value", &password_value); password_dict.GetString("origin_url", &origin_url_text); password_dict.GetString("username_element", &username_element); password_dict.GetString("password_element", &password_element); password_dict.GetString("submit_element", &submit_element); password_dict.GetString("action_target", &action_target_text); if (!password_dict.GetBoolean("blacklist", &blacklist)) blacklist = false; GURL origin_gurl(origin_url_text); GURL action_target(action_target_text); content::PasswordForm password_form; password_form.signon_realm = signon_realm; password_form.username_value = username_value; password_form.password_value = password_value; password_form.origin = origin_gurl; password_form.username_element = username_element; password_form.password_element = password_element; password_form.submit_element = submit_element; password_form.action = action_target; password_form.blacklisted_by_user = blacklist; password_form.date_created = time; return password_form; } } // namespace // See AddSavedPassword() in chrome/test/functional/pyauto.py for sample json // input. // Sample json output: { "password_added": true } void TestingAutomationProvider::AddSavedPassword( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { DictionaryValue* password_dict = NULL; if (!args->GetDictionary("password", &password_dict)) { AutomationJSONReply(this, reply_message).SendError( "Must specify a password dictionary."); return; } // The "signon realm" is effectively the primary key and must be included. // Check here before calling GetPasswordFormFromDict. if (!password_dict->HasKey("signon_realm")) { AutomationJSONReply(this, reply_message).SendError( "Password must include a value for 'signon_realm.'"); return; } content::PasswordForm new_password = GetPasswordFormFromDict(*password_dict); // Use IMPLICIT_ACCESS since new passwords aren't added in incognito mode. PasswordStore* password_store = PasswordStoreFactory::GetForProfile( browser->profile(), Profile::IMPLICIT_ACCESS); // The password store does not exist for an incognito window. if (password_store == NULL) { scoped_ptr<DictionaryValue> return_value(new DictionaryValue); return_value->SetBoolean("password_added", false); AutomationJSONReply(this, reply_message).SendSuccess(return_value.get()); return; } // This observer will delete itself. PasswordStoreLoginsChangedObserver* observer = new PasswordStoreLoginsChangedObserver(this, reply_message, PasswordStoreChange::ADD, "password_added"); observer->Init(); password_store->AddLogin(new_password); } // See RemoveSavedPassword() in chrome/test/functional/pyauto.py for sample // json input. // Sample json output: {} void TestingAutomationProvider::RemoveSavedPassword( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { DictionaryValue* password_dict = NULL; if (!args->GetDictionary("password", &password_dict)) { AutomationJSONReply(this, reply_message).SendError( "Must specify a password dictionary."); return; } // The "signon realm" is effectively the primary key and must be included. // Check here before calling GetPasswordFormFromDict. if (!password_dict->HasKey("signon_realm")) { AutomationJSONReply(this, reply_message).SendError( "Password must include a value for 'signon_realm.'"); return; } content::PasswordForm to_remove = GetPasswordFormFromDict(*password_dict); // Use EXPLICIT_ACCESS since passwords can be removed in incognito mode. PasswordStore* password_store = PasswordStoreFactory::GetForProfile( browser->profile(), Profile::EXPLICIT_ACCESS); if (password_store == NULL) { AutomationJSONReply(this, reply_message).SendError( "Unable to get password store."); return; } // This observer will delete itself. PasswordStoreLoginsChangedObserver* observer = new PasswordStoreLoginsChangedObserver( this, reply_message, PasswordStoreChange::REMOVE, std::string()); observer->Init(); password_store->RemoveLogin(to_remove); } // Sample json input: { "command": "GetSavedPasswords" } // Refer to GetSavedPasswords() in chrome/test/pyautolib/pyauto.py for sample // json output. void TestingAutomationProvider::GetSavedPasswords( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { // Use EXPLICIT_ACCESS since saved passwords can be retrieved in // incognito mode. PasswordStore* password_store = PasswordStoreFactory::GetForProfile( browser->profile(), Profile::EXPLICIT_ACCESS); if (password_store == NULL) { AutomationJSONReply reply(this, reply_message); reply.SendError("Unable to get password store."); return; } password_store->GetAutofillableLogins( new AutomationProviderGetPasswordsObserver(this, reply_message)); // Observer deletes itself after sending the result. } namespace { // Get the WebContents from a dictionary of arguments. WebContents* GetWebContentsFromDict(const Browser* browser, const DictionaryValue* args, std::string* error_message) { int tab_index; if (!args->GetInteger("tab_index", &tab_index)) { *error_message = "Must include tab_index."; return NULL; } WebContents* web_contents = browser->tab_strip_model()->GetWebContentsAt(tab_index); if (!web_contents) { *error_message = base::StringPrintf("No tab at index %d.", tab_index); return NULL; } return web_contents; } } // namespace void TestingAutomationProvider::FindInPage( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { std::string error_message; WebContents* web_contents = GetWebContentsFromDict(browser, args, &error_message); if (!web_contents) { AutomationJSONReply(this, reply_message).SendError(error_message); return; } string16 search_string; bool forward; bool match_case; bool find_next; if (!args->GetString("search_string", &search_string)) { AutomationJSONReply(this, reply_message). SendError("Must include search_string string."); return; } if (!args->GetBoolean("forward", &forward)) { AutomationJSONReply(this, reply_message). SendError("Must include forward boolean."); return; } if (!args->GetBoolean("match_case", &match_case)) { AutomationJSONReply(this, reply_message). SendError("Must include match_case boolean."); return; } if (!args->GetBoolean("find_next", &find_next)) { AutomationJSONReply(this, reply_message). SendError("Must include find_next boolean."); return; } SendFindRequest(web_contents, true, search_string, forward, match_case, find_next, reply_message); } void TestingAutomationProvider::OpenFindInPage( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } chrome::FindInPage(browser, false, false); reply.SendSuccess(NULL); } void TestingAutomationProvider::IsFindInPageVisible( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); bool visible; Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } FindBarTesting* find_bar = browser->GetFindBarController()->find_bar()->GetFindBarTesting(); find_bar->GetFindBarWindowInfo(NULL, &visible); DictionaryValue dict; dict.SetBoolean("is_visible", visible); reply.SendSuccess(&dict); } void TestingAutomationProvider::InstallExtension( DictionaryValue* args, IPC::Message* reply_message) { base::FilePath::StringType path_string; bool with_ui; bool from_webstore = false; Browser* browser; content::WebContents* tab; std::string error_msg; if (!GetBrowserAndTabFromJSONArgs(args, &browser, &tab, &error_msg)) { AutomationJSONReply(this, reply_message).SendError(error_msg); return; } if (!args->GetString("path", &path_string)) { AutomationJSONReply(this, reply_message).SendError( "Missing or invalid 'path'"); return; } if (!args->GetBoolean("with_ui", &with_ui)) { AutomationJSONReply(this, reply_message).SendError( "Missing or invalid 'with_ui'"); return; } args->GetBoolean("from_webstore", &from_webstore); ExtensionService* service = extensions::ExtensionSystem::Get( browser->profile())->extension_service(); ExtensionProcessManager* manager = extensions::ExtensionSystem::Get(browser->profile())->process_manager(); if (service && manager) { // The observer will delete itself when done. new ExtensionReadyNotificationObserver( manager, service, this, reply_message); base::FilePath extension_path(path_string); // If the given path has a 'crx' extension, assume it is a packed extension // and install it. Otherwise load it as an unpacked extension. if (extension_path.MatchesExtension(FILE_PATH_LITERAL(".crx"))) { ExtensionInstallPrompt* client = (with_ui ? new ExtensionInstallPrompt(tab) : NULL); scoped_refptr<extensions::CrxInstaller> installer( extensions::CrxInstaller::Create(service, client)); if (!with_ui) installer->set_allow_silent_install(true); installer->set_install_cause(extension_misc::INSTALL_CAUSE_AUTOMATION); if (from_webstore) installer->set_creation_flags(Extension::FROM_WEBSTORE); installer->InstallCrx(extension_path); } else { scoped_refptr<extensions::UnpackedInstaller> installer( extensions::UnpackedInstaller::Create(service)); installer->set_prompt_for_plugins(with_ui); installer->Load(extension_path); } } else { AutomationJSONReply(this, reply_message).SendError( "Extensions service/process manager is not available"); } } namespace { ListValue* GetHostPermissions(const Extension* ext, bool effective_perm) { extensions::URLPatternSet pattern_set; if (effective_perm) pattern_set = ext->GetEffectiveHostPermissions(); else pattern_set = ext->GetActivePermissions()->explicit_hosts(); ListValue* permissions = new ListValue; for (extensions::URLPatternSet::const_iterator perm = pattern_set.begin(); perm != pattern_set.end(); ++perm) { permissions->Append(new StringValue(perm->GetAsString())); } return permissions; } ListValue* GetAPIPermissions(const Extension* ext) { ListValue* permissions = new ListValue; std::set<std::string> perm_list = ext->GetActivePermissions()->GetAPIsAsStrings(); for (std::set<std::string>::const_iterator perm = perm_list.begin(); perm != perm_list.end(); ++perm) { permissions->Append(new StringValue(perm->c_str())); } return permissions; } } // namespace // Sample json input: { "command": "GetExtensionsInfo" } // See GetExtensionsInfo() in chrome/test/pyautolib/pyauto.py for sample json // output. void TestingAutomationProvider::GetExtensionsInfo(DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } ExtensionService* service = extensions::ExtensionSystem::Get( browser->profile())->extension_service(); if (!service) { reply.SendError("No extensions service."); return; } scoped_ptr<DictionaryValue> return_value(new DictionaryValue); ListValue* extensions_values = new ListValue; const ExtensionSet* extensions = service->extensions(); const ExtensionSet* disabled_extensions = service->disabled_extensions(); ExtensionList all; all.insert(all.end(), extensions->begin(), extensions->end()); all.insert(all.end(), disabled_extensions->begin(), disabled_extensions->end()); ExtensionActionManager* extension_action_manager = ExtensionActionManager::Get(browser->profile()); for (ExtensionList::const_iterator it = all.begin(); it != all.end(); ++it) { const Extension* extension = *it; std::string id = extension->id(); DictionaryValue* extension_value = new DictionaryValue; extension_value->SetString("id", id); extension_value->SetString("version", extension->VersionString()); extension_value->SetString("name", extension->name()); extension_value->SetString("public_key", extension->public_key()); extension_value->SetString("description", extension->description()); extension_value->SetString( "background_url", extensions::BackgroundInfo::GetBackgroundURL(extension).spec()); extension_value->SetString("options_url", extensions::ManifestURL::GetOptionsPage(extension).spec()); extension_value->Set("host_permissions", GetHostPermissions(extension, false)); extension_value->Set("effective_host_permissions", GetHostPermissions(extension, true)); extension_value->Set("api_permissions", GetAPIPermissions(extension)); Manifest::Location location = extension->location(); extension_value->SetBoolean("is_component", location == Manifest::COMPONENT); extension_value->SetBoolean("is_internal", location == Manifest::INTERNAL); extension_value->SetBoolean("is_user_installed", location == Manifest::INTERNAL || Manifest::IsUnpackedLocation(location)); extension_value->SetBoolean("is_enabled", service->IsExtensionEnabled(id)); extension_value->SetBoolean("allowed_in_incognito", service->IsIncognitoEnabled(id)); extension_value->SetBoolean( "has_page_action", extension_action_manager->GetPageAction(*extension) != NULL); extensions_values->Append(extension_value); } return_value->Set("extensions", extensions_values); reply.SendSuccess(return_value.get()); } // See UninstallExtensionById() in chrome/test/pyautolib/pyauto.py for sample // json input. // Sample json output: {} void TestingAutomationProvider::UninstallExtensionById( DictionaryValue* args, IPC::Message* reply_message) { const Extension* extension; std::string error; Browser* browser; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } if (!GetExtensionFromJSONArgs( args, "id", browser->profile(), &extension, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } ExtensionService* service = extensions::ExtensionSystem::Get( browser->profile())->extension_service(); if (!service) { AutomationJSONReply(this, reply_message).SendError( "No extensions service."); return; } // Wait for a notification indicating that the extension with the given ID // has been uninstalled. This observer will delete itself. new ExtensionUninstallObserver(this, reply_message, extension->id()); service->UninstallExtension(extension->id(), false, NULL); } // See SetExtensionStateById() in chrome/test/pyautolib/pyauto.py // for sample json input. void TestingAutomationProvider::SetExtensionStateById( DictionaryValue* args, IPC::Message* reply_message) { const Extension* extension; std::string error; Browser* browser; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } if (!GetExtensionFromJSONArgs( args, "id", browser->profile(), &extension, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } bool enable; if (!args->GetBoolean("enable", &enable)) { AutomationJSONReply(this, reply_message) .SendError("Missing or invalid key: enable"); return; } bool allow_in_incognito; if (!args->GetBoolean("allow_in_incognito", &allow_in_incognito)) { AutomationJSONReply(this, reply_message) .SendError("Missing or invalid key: allow_in_incognito"); return; } if (allow_in_incognito && !enable) { AutomationJSONReply(this, reply_message) .SendError("Invalid state: Disabled extension " "cannot be allowed in incognito mode."); return; } ExtensionService* service = extensions::ExtensionSystem::Get( browser->profile())->extension_service(); ExtensionProcessManager* manager = extensions::ExtensionSystem::Get(browser->profile())->process_manager(); if (!service) { AutomationJSONReply(this, reply_message) .SendError("No extensions service or process manager."); return; } if (enable) { if (!service->IsExtensionEnabled(extension->id())) { new ExtensionReadyNotificationObserver( manager, service, this, reply_message); service->EnableExtension(extension->id()); } else { AutomationJSONReply(this, reply_message).SendSuccess(NULL); } } else { service->DisableExtension(extension->id(), Extension::DISABLE_USER_ACTION); AutomationJSONReply(this, reply_message).SendSuccess(NULL); } service->SetIsIncognitoEnabled(extension->id(), allow_in_incognito); } // See TriggerPageActionById() in chrome/test/pyautolib/pyauto.py // for sample json input. void TestingAutomationProvider::TriggerPageActionById( DictionaryValue* args, IPC::Message* reply_message) { std::string error; Browser* browser; WebContents* tab; if (!GetBrowserAndTabFromJSONArgs(args, &browser, &tab, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } const Extension* extension; if (!GetEnabledExtensionFromJSONArgs( args, "id", browser->profile(), &extension, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } ExtensionAction* page_action = ExtensionActionManager::Get(browser->profile())-> GetPageAction(*extension); if (!page_action) { AutomationJSONReply(this, reply_message).SendError( "Extension doesn't have any page action."); return; } EnsureTabSelected(browser, tab); bool pressed = false; LocationBarTesting* loc_bar = browser->window()->GetLocationBar()->GetLocationBarForTesting(); size_t page_action_visible_count = static_cast<size_t>(loc_bar->PageActionVisibleCount()); for (size_t i = 0; i < page_action_visible_count; ++i) { if (loc_bar->GetVisiblePageAction(i) == page_action) { loc_bar->TestPageActionPressed(i); pressed = true; break; } } if (!pressed) { AutomationJSONReply(this, reply_message).SendError( "Extension's page action is not visible."); return; } if (page_action->HasPopup(ExtensionTabUtil::GetTabId(tab))) { // This observer will delete itself. new ExtensionPopupObserver( this, reply_message, extension->id()); } else { AutomationJSONReply(this, reply_message).SendSuccess(NULL); } } // See TriggerBrowserActionById() in chrome/test/pyautolib/pyauto.py // for sample json input. void TestingAutomationProvider::TriggerBrowserActionById( DictionaryValue* args, IPC::Message* reply_message) { std::string error; Browser* browser; WebContents* tab; if (!GetBrowserAndTabFromJSONArgs(args, &browser, &tab, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } const Extension* extension; if (!GetEnabledExtensionFromJSONArgs( args, "id", browser->profile(), &extension, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } ExtensionAction* action = ExtensionActionManager::Get(browser->profile())-> GetBrowserAction(*extension); if (!action) { AutomationJSONReply(this, reply_message).SendError( "Extension doesn't have any browser action."); return; } EnsureTabSelected(browser, tab); BrowserActionTestUtil browser_actions(browser); int num_browser_actions = browser_actions.NumberOfBrowserActions(); int action_index = -1; #if defined(TOOLKIT_VIEWS) for (int i = 0; i < num_browser_actions; ++i) { if (extension->id() == browser_actions.GetExtensionId(i)) { action_index = i; break; } } #else // TODO(kkania): Implement the platform-specific GetExtensionId() in // BrowserActionTestUtil. if (num_browser_actions != 1) { AutomationJSONReply(this, reply_message).SendError(base::StringPrintf( "Found %d browser actions. Only one browser action must be active.", num_browser_actions)); return; } // This extension has a browser action, and there's only one action, so this // must be the first one. action_index = 0; #endif if (action_index == -1) { AutomationJSONReply(this, reply_message).SendError( "Extension's browser action is not visible."); return; } browser_actions.Press(action_index); if (action->HasPopup(ExtensionTabUtil::GetTabId(tab))) { // This observer will delete itself. new ExtensionPopupObserver( this, reply_message, extension->id()); } else { AutomationJSONReply(this, reply_message).SendSuccess(NULL); } } void TestingAutomationProvider::ActionOnSSLBlockingPage( DictionaryValue* args, IPC::Message* reply_message) { WebContents* web_contents; bool proceed; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } if (!args->GetBoolean("proceed", &proceed)) { AutomationJSONReply(this, reply_message).SendError( "'proceed' is missing or invalid"); return; } NavigationController& controller = web_contents->GetController(); NavigationEntry* entry = controller.GetActiveEntry(); if (entry->GetPageType() == content::PAGE_TYPE_INTERSTITIAL) { InterstitialPage* ssl_blocking_page = InterstitialPage::GetInterstitialPage(web_contents); if (ssl_blocking_page) { if (proceed) { new NavigationNotificationObserver(&controller, this, reply_message, 1, false, true); ssl_blocking_page->Proceed(); return; } ssl_blocking_page->DontProceed(); AutomationJSONReply(this, reply_message).SendSuccess(NULL); return; } } AutomationJSONReply(this, reply_message).SendError(error); } void TestingAutomationProvider::GetSecurityState(DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); WebContents* web_contents; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { reply.SendError(error); return; } NavigationEntry* entry = web_contents->GetController().GetActiveEntry(); DictionaryValue dict; dict.SetInteger("security_style", static_cast<int>(entry->GetSSL().security_style)); dict.SetInteger("ssl_cert_status", static_cast<int>(entry->GetSSL().cert_status)); dict.SetInteger("insecure_content_status", static_cast<int>(entry->GetSSL().content_status)); reply.SendSuccess(&dict); } // Sample json input: { "command": "UpdateExtensionsNow" } // Sample json output: {} void TestingAutomationProvider::UpdateExtensionsNow( DictionaryValue* args, IPC::Message* reply_message) { std::string error; Browser* browser; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } ExtensionService* service = extensions::ExtensionSystem::Get( browser->profile())->extension_service(); if (!service) { AutomationJSONReply(this, reply_message).SendError( "No extensions service."); return; } extensions::ExtensionUpdater* updater = service->updater(); if (!updater) { AutomationJSONReply(this, reply_message).SendError( "No updater for extensions service."); return; } ExtensionProcessManager* manager = extensions::ExtensionSystem::Get(browser->profile())->process_manager(); if (!manager) { AutomationJSONReply(this, reply_message).SendError( "No extension process manager."); return; } // Create a new observer that waits until the extensions have been fully // updated (we should not send the reply until after all extensions have // been updated). This observer will delete itself. ExtensionsUpdatedObserver* observer = new ExtensionsUpdatedObserver( manager, this, reply_message); extensions::ExtensionUpdater::CheckParams params; params.install_immediately = true; params.callback = base::Bind(&ExtensionsUpdatedObserver::UpdateCheckFinished, base::Unretained(observer)); updater->CheckNow(params); } #if !defined(NO_TCMALLOC) && (defined(OS_LINUX) || defined(OS_CHROMEOS)) // Sample json input: { "command": "HeapProfilerDump", // "process_type": "renderer", // "reason": "Perf bot", // "tab_index": 0, // "windex": 0 } // "auto_id" is acceptable instead of "tab_index" and "windex". void TestingAutomationProvider::HeapProfilerDump( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); std::string process_type_string; if (!args->GetString("process_type", &process_type_string)) { reply.SendError("No process type is specified"); return; } std::string reason_string; if (args->GetString("reason", &reason_string)) reason_string += " (via PyAuto testing)"; else reason_string = "By PyAuto testing"; if (process_type_string == "browser") { if (!::IsHeapProfilerRunning()) { reply.SendError("The heap profiler is not running"); return; } ::HeapProfilerDump(reason_string.c_str()); reply.SendSuccess(NULL); return; } else if (process_type_string == "renderer") { WebContents* web_contents; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { reply.SendError(error); return; } RenderViewHost* render_view = web_contents->GetRenderViewHost(); if (!render_view) { reply.SendError("Tab has no associated RenderViewHost"); return; } AutomationTabHelper* automation_tab_helper = AutomationTabHelper::FromWebContents(web_contents); automation_tab_helper->HeapProfilerDump(reason_string); reply.SendSuccess(NULL); return; } reply.SendError("Process type is not supported"); } #endif // !defined(NO_TCMALLOC) && (defined(OS_LINUX) || defined(OS_CHROMEOS)) namespace { void SendSuccessIfAlive( base::WeakPtr<AutomationProvider> provider, IPC::Message* reply_message) { if (provider) AutomationJSONReply(provider.get(), reply_message).SendSuccess(NULL); } } // namespace void TestingAutomationProvider::OverrideGeoposition( base::DictionaryValue* args, IPC::Message* reply_message) { double latitude, longitude, altitude; if (!args->GetDouble("latitude", &latitude) || !args->GetDouble("longitude", &longitude) || !args->GetDouble("altitude", &altitude)) { AutomationJSONReply(this, reply_message).SendError( "Missing or invalid geolocation parameters"); return; } content::Geoposition position; position.latitude = latitude; position.longitude = longitude; position.altitude = altitude; position.accuracy = 0.; position.timestamp = base::Time::Now(); content::OverrideLocationForTesting( position, base::Bind(&SendSuccessIfAlive, AsWeakPtr(), reply_message)); } // Refer to GetAllNotifications() in chrome/test/pyautolib/pyauto.py for // sample json input/output. void TestingAutomationProvider::GetAllNotifications( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { new GetAllNotificationsObserver(this, reply_message); } // Refer to CloseNotification() in chrome/test/pyautolib/pyauto.py for // sample json input. // Returns empty json message. void TestingAutomationProvider::CloseNotification( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { int index; if (!args->GetInteger("index", &index)) { AutomationJSONReply(this, reply_message) .SendError("'index' missing or invalid."); return; } BalloonNotificationUIManager* manager = BalloonNotificationUIManager::GetInstanceForTesting(); BalloonCollection* collection = manager->balloon_collection(); const BalloonCollection::Balloons& balloons = collection->GetActiveBalloons(); int balloon_count = static_cast<int>(balloons.size()); if (index < 0 || index >= balloon_count) { AutomationJSONReply(this, reply_message) .SendError(base::StringPrintf("No notification at index %d", index)); return; } std::vector<const Notification*> queued_notes; manager->GetQueuedNotificationsForTesting(&queued_notes); if (queued_notes.empty()) { new OnNotificationBalloonCountObserver( this, reply_message, balloon_count - 1); } else { new NewNotificationBalloonObserver(this, reply_message); } manager->CancelById(balloons[index]->notification().notification_id()); } // Refer to WaitForNotificationCount() in chrome/test/pyautolib/pyauto.py for // sample json input. // Returns empty json message. void TestingAutomationProvider::WaitForNotificationCount( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { int count; if (!args->GetInteger("count", &count)) { AutomationJSONReply(this, reply_message) .SendError("'count' missing or invalid."); return; } // This will delete itself when finished. new OnNotificationBalloonCountObserver(this, reply_message, count); } // Sample JSON input: { "command": "GetNTPInfo" } // For output, refer to chrome/test/pyautolib/ntp_model.py. void TestingAutomationProvider::GetNTPInfo( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { // This observer will delete itself. new NTPInfoObserver(this, reply_message); } void TestingAutomationProvider::RemoveNTPMostVisitedThumbnail( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); std::string url; if (!args->GetString("url", &url)) { reply.SendError("Missing or invalid 'url' key."); return; } history::TopSites* top_sites = browser->profile()->GetTopSites(); if (!top_sites) { reply.SendError("TopSites service is not initialized."); return; } top_sites->AddBlacklistedURL(GURL(url)); reply.SendSuccess(NULL); } void TestingAutomationProvider::RestoreAllNTPMostVisitedThumbnails( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); history::TopSites* top_sites = browser->profile()->GetTopSites(); if (!top_sites) { reply.SendError("TopSites service is not initialized."); return; } top_sites->ClearBlacklistedURLs(); reply.SendSuccess(NULL); } void TestingAutomationProvider::KillRendererProcess( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { int pid; uint32 kAccessFlags = base::kProcessAccessTerminate | base::kProcessAccessWaitForTermination | base::kProcessAccessQueryInformation; if (!args->GetInteger("pid", &pid)) { AutomationJSONReply(this, reply_message) .SendError("'pid' key missing or invalid."); return; } base::ProcessHandle process; if (!base::OpenProcessHandleWithAccess(static_cast<base::ProcessId>(pid), kAccessFlags, &process)) { AutomationJSONReply(this, reply_message).SendError(base::StringPrintf( "Failed to open process handle for pid %d", pid)); return; } new RendererProcessClosedObserver(this, reply_message); base::KillProcess(process, 0, false); base::CloseProcessHandle(process); } bool TestingAutomationProvider::BuildWebKeyEventFromArgs( DictionaryValue* args, std::string* error, NativeWebKeyboardEvent* event) { int type, modifiers; bool is_system_key; string16 unmodified_text, text; std::string key_identifier; if (!args->GetInteger("type", &type)) { *error = "'type' missing or invalid."; return false; } if (!args->GetBoolean("isSystemKey", &is_system_key)) { *error = "'isSystemKey' missing or invalid."; return false; } if (!args->GetString("unmodifiedText", &unmodified_text)) { *error = "'unmodifiedText' missing or invalid."; return false; } if (!args->GetString("text", &text)) { *error = "'text' missing or invalid."; return false; } if (!args->GetInteger("nativeKeyCode", &event->nativeKeyCode)) { *error = "'nativeKeyCode' missing or invalid."; return false; } if (!args->GetInteger("windowsKeyCode", &event->windowsKeyCode)) { *error = "'windowsKeyCode' missing or invalid."; return false; } if (!args->GetInteger("modifiers", &modifiers)) { *error = "'modifiers' missing or invalid."; return false; } if (args->GetString("keyIdentifier", &key_identifier)) { base::strlcpy(event->keyIdentifier, key_identifier.c_str(), WebKit::WebKeyboardEvent::keyIdentifierLengthCap); } else { event->setKeyIdentifierFromWindowsKeyCode(); } if (type == automation::kRawKeyDownType) { event->type = WebKit::WebInputEvent::RawKeyDown; } else if (type == automation::kKeyDownType) { event->type = WebKit::WebInputEvent::KeyDown; } else if (type == automation::kKeyUpType) { event->type = WebKit::WebInputEvent::KeyUp; } else if (type == automation::kCharType) { event->type = WebKit::WebInputEvent::Char; } else { *error = "'type' refers to an unrecognized keyboard event type"; return false; } string16 unmodified_text_truncated = unmodified_text.substr( 0, WebKit::WebKeyboardEvent::textLengthCap - 1); memcpy(event->unmodifiedText, unmodified_text_truncated.c_str(), unmodified_text_truncated.length() + 1); string16 text_truncated = text.substr( 0, WebKit::WebKeyboardEvent::textLengthCap - 1); memcpy(event->text, text_truncated.c_str(), text_truncated.length() + 1); event->modifiers = 0; if (modifiers & automation::kShiftKeyMask) event->modifiers |= WebKit::WebInputEvent::ShiftKey; if (modifiers & automation::kControlKeyMask) event->modifiers |= WebKit::WebInputEvent::ControlKey; if (modifiers & automation::kAltKeyMask) event->modifiers |= WebKit::WebInputEvent::AltKey; if (modifiers & automation::kMetaKeyMask) event->modifiers |= WebKit::WebInputEvent::MetaKey; event->isSystemKey = is_system_key; event->timeStampSeconds = base::Time::Now().ToDoubleT(); event->skip_in_browser = true; return true; } void TestingAutomationProvider::BuildSimpleWebKeyEvent( WebKit::WebInputEvent::Type type, int windows_key_code, NativeWebKeyboardEvent* event) { event->nativeKeyCode = 0; event->windowsKeyCode = windows_key_code; event->setKeyIdentifierFromWindowsKeyCode(); event->type = type; event->modifiers = 0; event->isSystemKey = false; event->timeStampSeconds = base::Time::Now().ToDoubleT(); event->skip_in_browser = true; } void TestingAutomationProvider::SendWebKeyPressEventAsync( int key_code, WebContents* web_contents) { // Create and send a "key down" event for the specified key code. NativeWebKeyboardEvent event_down; BuildSimpleWebKeyEvent(WebKit::WebInputEvent::RawKeyDown, key_code, &event_down); web_contents->GetRenderViewHost()->ForwardKeyboardEvent(event_down); // Create and send a corresponding "key up" event. NativeWebKeyboardEvent event_up; BuildSimpleWebKeyEvent(WebKit::WebInputEvent::KeyUp, key_code, &event_up); web_contents->GetRenderViewHost()->ForwardKeyboardEvent(event_up); } void TestingAutomationProvider::SendWebkitKeyEvent( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; NativeWebKeyboardEvent event; // In the event of an error, BuildWebKeyEventFromArgs handles telling what // went wrong and sending the reply message; if it fails, we just have to // stop here. std::string error; if (!BuildWebKeyEventFromArgs(args, &error, &event)) { AutomationJSONReply(this, reply_message).SendError(error); return; } RenderViewHost* view; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } new InputEventAckNotificationObserver(this, reply_message, event.type, 1); view->ForwardKeyboardEvent(event); } namespace { bool ReadScriptEvaluationRequestList( base::Value* value, std::vector<ScriptEvaluationRequest>* list, std::string* error_msg) { ListValue* request_list; if (!value->GetAsList(&request_list)) return false; for (size_t i = 0; i < request_list->GetSize(); ++i) { DictionaryValue* request_dict; if (!request_list->GetDictionary(i, &request_dict)) { *error_msg = "Script evaluation request was not a dictionary"; return false; } ScriptEvaluationRequest request; if (!request_dict->GetString("script", &request.script) || !request_dict->GetString("frame_xpath", &request.frame_xpath)) { *error_msg = "Script evaluation request was invalid"; return false; } list->push_back(request); } return true; } void SendPointIfAlive( base::WeakPtr<AutomationProvider> provider, IPC::Message* reply_message, const gfx::Point& point) { if (provider) { DictionaryValue dict; dict.SetInteger("x", point.x()); dict.SetInteger("y", point.y()); AutomationJSONReply(provider.get(), reply_message).SendSuccess(&dict); } } void SendErrorIfAlive( base::WeakPtr<AutomationProvider> provider, IPC::Message* reply_message, const automation::Error& error) { if (provider) { AutomationJSONReply(provider.get(), reply_message).SendError(error); } } } // namespace void TestingAutomationProvider::ProcessWebMouseEvent( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; RenderViewHost* view; std::string error; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } int type; int button; int modifiers; WebKit::WebMouseEvent event; if (!args->GetInteger("type", &type) || !args->GetInteger("button", &button) || !args->GetInteger("x", &event.x) || !args->GetInteger("y", &event.y) || !args->GetInteger("click_count", &event.clickCount) || !args->GetInteger("modifiers", &modifiers)) { AutomationJSONReply(this, reply_message) .SendError("WebMouseEvent has missing or invalid parameters"); return; } if (type == automation::kMouseDown) { event.type = WebKit::WebInputEvent::MouseDown; } else if (type == automation::kMouseUp) { event.type = WebKit::WebInputEvent::MouseUp; } else if (type == automation::kMouseMove) { event.type = WebKit::WebInputEvent::MouseMove; } else if (type == automation::kMouseEnter) { event.type = WebKit::WebInputEvent::MouseEnter; } else if (type == automation::kMouseLeave) { event.type = WebKit::WebInputEvent::MouseLeave; } else if (type == automation::kContextMenu) { event.type = WebKit::WebInputEvent::ContextMenu; } else { AutomationJSONReply(this, reply_message) .SendError("'type' refers to an unrecognized mouse event type"); return; } if (button == automation::kLeftButton) { event.button = WebKit::WebMouseEvent::ButtonLeft; } else if (button == automation::kMiddleButton) { event.button = WebKit::WebMouseEvent::ButtonMiddle; } else if (button == automation::kRightButton) { event.button = WebKit::WebMouseEvent::ButtonRight; } else if (button == automation::kNoButton) { event.button = WebKit::WebMouseEvent::ButtonNone; } else { AutomationJSONReply(this, reply_message) .SendError("'button' refers to an unrecognized button"); return; } event.modifiers = 0; if (modifiers & automation::kShiftKeyMask) event.modifiers |= WebKit::WebInputEvent::ShiftKey; if (modifiers & automation::kControlKeyMask) event.modifiers |= WebKit::WebInputEvent::ControlKey; if (modifiers & automation::kAltKeyMask) event.modifiers |= WebKit::WebInputEvent::AltKey; if (modifiers & automation::kMetaKeyMask) event.modifiers |= WebKit::WebInputEvent::MetaKey; AutomationMouseEvent automation_event; automation_event.mouse_event = event; Value* location_script_chain_value; if (args->Get("location_script_chain", &location_script_chain_value)) { if (!ReadScriptEvaluationRequestList( location_script_chain_value, &automation_event.location_script_chain, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } } new AutomationMouseEventProcessor( view, automation_event, base::Bind(&SendPointIfAlive, AsWeakPtr(), reply_message), base::Bind(&SendErrorIfAlive, AsWeakPtr(), reply_message)); } namespace { // Gets the active JavaScript modal dialog, or NULL if none. JavaScriptAppModalDialog* GetActiveJavaScriptModalDialog( ErrorCode* error_code) { AppModalDialogQueue* dialog_queue = AppModalDialogQueue::GetInstance(); if (!dialog_queue->HasActiveDialog() || !dialog_queue->active_dialog()->IsJavaScriptModalDialog()) { *error_code = automation::kNoJavaScriptModalDialogOpen; return NULL; } return static_cast<JavaScriptAppModalDialog*>(dialog_queue->active_dialog()); } } // namespace void TestingAutomationProvider::GetAppModalDialogMessage( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); ErrorCode code; JavaScriptAppModalDialog* dialog = GetActiveJavaScriptModalDialog(&code); if (!dialog) { reply.SendErrorCode(code); return; } DictionaryValue result_dict; result_dict.SetString("message", UTF16ToUTF8(dialog->message_text())); reply.SendSuccess(&result_dict); } void TestingAutomationProvider::AcceptOrDismissAppModalDialog( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); bool accept; if (!args->GetBoolean("accept", &accept)) { reply.SendError("Missing or invalid 'accept'"); return; } ErrorCode code; JavaScriptAppModalDialog* dialog = GetActiveJavaScriptModalDialog(&code); if (!dialog) { reply.SendErrorCode(code); return; } if (accept) { std::string prompt_text; if (args->GetString("prompt_text", &prompt_text)) dialog->SetOverridePromptText(UTF8ToUTF16(prompt_text)); dialog->native_dialog()->AcceptAppModalDialog(); } else { dialog->native_dialog()->CancelAppModalDialog(); } reply.SendSuccess(NULL); } // Sample JSON input: { "command": "LaunchApp", // "id": "ahfgeienlihckogmohjhadlkjgocpleb" } // Sample JSON output: {} void TestingAutomationProvider::LaunchApp( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { std::string id; if (!args->GetString("id", &id)) { AutomationJSONReply(this, reply_message).SendError( "Must include string id."); return; } ExtensionService* service = extensions::ExtensionSystem::Get( browser->profile())->extension_service(); if (!service) { AutomationJSONReply(this, reply_message).SendError( "No extensions service."); return; } const Extension* extension = service->GetExtensionById( id, false /* do not include disabled extensions */); if (!extension) { AutomationJSONReply(this, reply_message).SendError( base::StringPrintf( "Extension with ID '%s' doesn't exist or is disabled.", id.c_str())); return; } WebContents* old_contents = browser->tab_strip_model()->GetActiveWebContents(); if (!old_contents) { AutomationJSONReply(this, reply_message).SendError( "Cannot identify selected tab contents."); return; } chrome::AppLaunchParams launch_params(profile(), extension, CURRENT_TAB); // This observer will delete itself. new AppLaunchObserver(&old_contents->GetController(), this, reply_message, launch_params.container); chrome::OpenApplication(launch_params); } // Sample JSON input: { "command": "SetAppLaunchType", // "id": "ahfgeienlihckogmohjhadlkjgocpleb", // "launch_type": "pinned" } // Sample JSON output: {} void TestingAutomationProvider::SetAppLaunchType( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); std::string id; if (!args->GetString("id", &id)) { reply.SendError("Must include string id."); return; } std::string launch_type_str; if (!args->GetString("launch_type", &launch_type_str)) { reply.SendError("Must specify app launch type."); return; } ExtensionService* service = extensions::ExtensionSystem::Get( browser->profile())->extension_service(); if (!service) { reply.SendError("No extensions service."); return; } const Extension* extension = service->GetExtensionById( id, true /* include disabled extensions */); if (!extension) { reply.SendError(base::StringPrintf( "Extension with ID '%s' doesn't exist.", id.c_str())); return; } extensions::ExtensionPrefs::LaunchType launch_type; if (launch_type_str == "pinned") { launch_type = extensions::ExtensionPrefs::LAUNCH_PINNED; } else if (launch_type_str == "regular") { launch_type = extensions::ExtensionPrefs::LAUNCH_REGULAR; } else if (launch_type_str == "fullscreen") { launch_type = extensions::ExtensionPrefs::LAUNCH_FULLSCREEN; } else if (launch_type_str == "window") { launch_type = extensions::ExtensionPrefs::LAUNCH_WINDOW; } else { reply.SendError(base::StringPrintf( "Unexpected launch type '%s'.", launch_type_str.c_str())); return; } service->extension_prefs()->SetLaunchType(extension->id(), launch_type); reply.SendSuccess(NULL); } // Sample json input: { "command": "GetV8HeapStats", // "tab_index": 0 } // Refer to GetV8HeapStats() in chrome/test/pyautolib/pyauto.py for // sample json output. void TestingAutomationProvider::GetV8HeapStats( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { WebContents* web_contents; int tab_index; std::string error; if (!args->GetInteger("tab_index", &tab_index)) { AutomationJSONReply(this, reply_message).SendError( "Missing 'tab_index' argument."); return; } web_contents = browser->tab_strip_model()->GetWebContentsAt(tab_index); if (!web_contents) { AutomationJSONReply(this, reply_message).SendError(base::StringPrintf( "Could not get WebContents at tab index %d", tab_index)); return; } RenderViewHost* render_view = web_contents->GetRenderViewHost(); // This observer will delete itself. new V8HeapStatsObserver( this, reply_message, base::GetProcId(render_view->GetProcess()->GetHandle())); render_view->Send(new ChromeViewMsg_GetV8HeapStats); } // Sample json input: { "command": "GetFPS", // "tab_index": 0 } // Refer to GetFPS() in chrome/test/pyautolib/pyauto.py for // sample json output. void TestingAutomationProvider::GetFPS( Browser* browser, DictionaryValue* args, IPC::Message* reply_message) { WebContents* web_contents; int tab_index; std::string error; if (!args->GetInteger("tab_index", &tab_index)) { AutomationJSONReply(this, reply_message).SendError( "Missing 'tab_index' argument."); return; } web_contents = browser->tab_strip_model()->GetWebContentsAt(tab_index); if (!web_contents) { AutomationJSONReply(this, reply_message).SendError(base::StringPrintf( "Could not get WebContents at tab index %d", tab_index)); return; } RenderViewHost* render_view = web_contents->GetRenderViewHost(); int routing_id = render_view->GetRoutingID(); // This observer will delete itself. new FPSObserver( this, reply_message, base::GetProcId(render_view->GetProcess()->GetHandle()), routing_id); render_view->Send(new ChromeViewMsg_GetFPS(routing_id)); } void TestingAutomationProvider::IsFullscreenForBrowser(Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { DictionaryValue dict; dict.SetBoolean("result", browser->fullscreen_controller()->IsFullscreenForBrowser()); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::IsFullscreenForTab(Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { DictionaryValue dict; dict.SetBoolean("result", browser->fullscreen_controller()->IsFullscreenForTabOrPending()); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::IsMouseLocked(Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { DictionaryValue dict; dict.SetBoolean("result", browser->tab_strip_model()->GetActiveWebContents()-> GetRenderViewHost()->GetView()->IsMouseLocked()); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::IsMouseLockPermissionRequested( Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { FullscreenExitBubbleType type = browser->fullscreen_controller()->GetFullscreenExitBubbleType(); bool mouse_lock = false; fullscreen_bubble::PermissionRequestedByType(type, NULL, &mouse_lock); DictionaryValue dict; dict.SetBoolean("result", mouse_lock); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::IsFullscreenPermissionRequested( Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { FullscreenExitBubbleType type = browser->fullscreen_controller()->GetFullscreenExitBubbleType(); bool fullscreen = false; fullscreen_bubble::PermissionRequestedByType(type, &fullscreen, NULL); DictionaryValue dict; dict.SetBoolean("result", fullscreen); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::IsFullscreenBubbleDisplayed(Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { FullscreenExitBubbleType type = browser->fullscreen_controller()->GetFullscreenExitBubbleType(); DictionaryValue dict; dict.SetBoolean("result", type != FEB_TYPE_BROWSER_FULLSCREEN_EXIT_INSTRUCTION); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::IsFullscreenBubbleDisplayingButtons( Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { FullscreenExitBubbleType type = browser->fullscreen_controller()->GetFullscreenExitBubbleType(); DictionaryValue dict; dict.SetBoolean("result", fullscreen_bubble::ShowButtonsForType(type)); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::AcceptCurrentFullscreenOrMouseLockRequest( Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { browser->fullscreen_controller()->OnAcceptFullscreenPermission(); AutomationJSONReply(this, reply_message).SendSuccess(NULL); } void TestingAutomationProvider::DenyCurrentFullscreenOrMouseLockRequest( Browser* browser, base::DictionaryValue* args, IPC::Message* reply_message) { browser->fullscreen_controller()->OnDenyFullscreenPermission(); AutomationJSONReply(this, reply_message).SendSuccess(NULL); } void TestingAutomationProvider::WaitForAllViewsToStopLoading( DictionaryValue* args, IPC::Message* reply_message) { if (AppModalDialogQueue::GetInstance()->HasActiveDialog()) { AutomationJSONReply(this, reply_message).SendSuccess(NULL); return; } // This class will send the message immediately if no tab is loading. new AllViewsStoppedLoadingObserver( this, reply_message, extensions::ExtensionSystem::Get(profile())->process_manager()); } void TestingAutomationProvider::WaitForTabToBeRestored( DictionaryValue* args, IPC::Message* reply_message) { WebContents* web_contents; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } NavigationController& controller = web_contents->GetController(); new NavigationControllerRestoredObserver(this, &controller, reply_message); } void TestingAutomationProvider::RefreshPolicies( base::DictionaryValue* args, IPC::Message* reply_message) { #if !defined(ENABLE_CONFIGURATION_POLICY) AutomationJSONReply(this, reply_message).SendError( "Configuration Policy disabled"); #else // Some policies (e.g. URLBlacklist) post tasks to other message loops // before they start enforcing updated policy values; make sure those tasks // have finished after a policy update. // Updates of the URLBlacklist are done on IO, after building the blacklist // on FILE, which is initiated from IO. base::Closure reply = base::Bind(SendSuccessReply, AsWeakPtr(), reply_message); g_browser_process->policy_service()->RefreshPolicies( base::Bind(PostTask, BrowserThread::IO, base::Bind(PostTask, BrowserThread::FILE, base::Bind(PostTask, BrowserThread::IO, base::Bind(PostTask, BrowserThread::UI, reply))))); #endif } static int AccessArray(const volatile int arr[], const volatile int *index) { return arr[*index]; } void TestingAutomationProvider::SimulateAsanMemoryBug( base::DictionaryValue* args, IPC::Message* reply_message) { // This array is volatile not to let compiler optimize us out. volatile int testarray[3] = {0, 0, 0}; // Send the reply while we can. AutomationJSONReply(this, reply_message).SendSuccess(NULL); // Cause Address Sanitizer to abort this process. volatile int index = 5; AccessArray(testarray, &index); } void TestingAutomationProvider::GetIndicesFromTab( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); int id_or_handle = 0; bool has_id = args->HasKey("tab_id"); bool has_handle = args->HasKey("tab_handle"); if (has_id && has_handle) { reply.SendError( "Both 'tab_id' and 'tab_handle' were specified. Only one is allowed"); return; } else if (!has_id && !has_handle) { reply.SendError("Either 'tab_id' or 'tab_handle' must be specified"); return; } if (has_id && !args->GetInteger("tab_id", &id_or_handle)) { reply.SendError("'tab_id' is invalid"); return; } if (has_handle && (!args->GetInteger("tab_handle", &id_or_handle) || !tab_tracker_->ContainsHandle(id_or_handle))) { reply.SendError("'tab_handle' is invalid"); return; } int id = id_or_handle; if (has_handle) { SessionTabHelper* session_tab_helper = SessionTabHelper::FromWebContents( tab_tracker_->GetResource(id_or_handle)->GetWebContents()); id = session_tab_helper->session_id().id(); } chrome::BrowserIterator it; int browser_index = 0; for (; !it.done(); it.Next(), ++browser_index) { Browser* browser = *it; for (int tab_index = 0; tab_index < browser->tab_strip_model()->count(); ++tab_index) { WebContents* tab = browser->tab_strip_model()->GetWebContentsAt(tab_index); SessionTabHelper* session_tab_helper = SessionTabHelper::FromWebContents(tab); if (session_tab_helper->session_id().id() == id) { DictionaryValue dict; dict.SetInteger("windex", browser_index); dict.SetInteger("tab_index", tab_index); reply.SendSuccess(&dict); return; } } } reply.SendError("Could not find tab among current browser windows"); } void TestingAutomationProvider::NavigateToURL( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; int navigation_count; std::string url, error; Browser* browser; WebContents* web_contents; if (!GetBrowserAndTabFromJSONArgs(args, &browser, &web_contents, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } if (!args->GetString("url", &url)) { AutomationJSONReply(this, reply_message) .SendError("'url' missing or invalid"); return; } if (!args->GetInteger("navigation_count", &navigation_count)) { AutomationJSONReply(this, reply_message) .SendError("'navigation_count' missing or invalid"); return; } if (navigation_count > 0) { new NavigationNotificationObserver( &web_contents->GetController(), this, reply_message, navigation_count, false, true); } else { AutomationJSONReply(this, reply_message).SendSuccess(NULL); } OpenURLParams params( GURL(url), content::Referrer(), CURRENT_TAB, content::PageTransitionFromInt( content::PAGE_TRANSITION_TYPED | content::PAGE_TRANSITION_FROM_ADDRESS_BAR), false); browser->OpenURLFromTab(web_contents, params); } void TestingAutomationProvider::GetActiveTabIndexJSON( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error_msg; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { reply.SendError(error_msg); return; } int tab_index = browser->tab_strip_model()->active_index(); scoped_ptr<DictionaryValue> return_value(new DictionaryValue); return_value->SetInteger("tab_index", tab_index); reply.SendSuccess(return_value.get()); } void TestingAutomationProvider::AppendTabJSON(DictionaryValue* args, IPC::Message* reply_message) { TabAppendedNotificationObserver* observer = NULL; int append_tab_response = -1; Browser* browser; std::string error_msg, url; if (!GetBrowserFromJSONArgs(args, &browser, &error_msg)) { AutomationJSONReply(this, reply_message).SendError(error_msg); return; } if (!args->GetString("url", &url)) { AutomationJSONReply(this, reply_message) .SendError("'url' missing or invalid"); return; } observer = new TabAppendedNotificationObserver(browser, this, reply_message, true); WebContents* contents = chrome::AddSelectedTabWithURL(browser, GURL(url), content::PAGE_TRANSITION_TYPED); if (contents) { append_tab_response = GetIndexForNavigationController( &contents->GetController(), browser); } if (!contents || append_tab_response < 0) { if (observer) { observer->ReleaseReply(); delete observer; } AutomationJSONReply(this, reply_message).SendError("Failed to append tab."); } } void TestingAutomationProvider::WaitUntilNavigationCompletes( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; std::string error; Browser* browser; WebContents* web_contents; if (!GetBrowserAndTabFromJSONArgs(args, &browser, &web_contents, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } NavigationNotificationObserver* observer = new NavigationNotificationObserver(&web_contents->GetController(), this, reply_message, 1, true, true); if (!web_contents->IsLoading()) { observer->ConditionMet(AUTOMATION_MSG_NAVIGATION_SUCCESS); return; } } void TestingAutomationProvider::ExecuteJavascriptJSON( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; string16 frame_xpath, javascript; std::string error; RenderViewHost* render_view; if (!GetRenderViewFromJSONArgs(args, profile(), &render_view, &error)) { AutomationJSONReply(this, reply_message).SendError( Error(automation::kInvalidId, error)); return; } if (!args->GetString("frame_xpath", &frame_xpath)) { AutomationJSONReply(this, reply_message) .SendError("'frame_xpath' missing or invalid"); return; } if (!args->GetString("javascript", &javascript)) { AutomationJSONReply(this, reply_message) .SendError("'javascript' missing or invalid"); return; } new DomOperationMessageSender(this, reply_message, true); ExecuteJavascriptInRenderViewFrame(frame_xpath, javascript, reply_message, render_view); } void TestingAutomationProvider::ExecuteJavascriptInRenderView( DictionaryValue* args, IPC::Message* reply_message) { string16 frame_xpath, javascript, extension_id, url_text; std::string error; int render_process_id, render_view_id; if (!args->GetString("frame_xpath", &frame_xpath)) { AutomationJSONReply(this, reply_message) .SendError("'frame_xpath' missing or invalid"); return; } if (!args->GetString("javascript", &javascript)) { AutomationJSONReply(this, reply_message) .SendError("'javascript' missing or invalid"); return; } if (!args->GetInteger("view.render_process_id", &render_process_id)) { AutomationJSONReply(this, reply_message) .SendError("'view.render_process_id' missing or invalid"); return; } if (!args->GetInteger("view.render_view_id", &render_view_id)) { AutomationJSONReply(this, reply_message) .SendError("'view.render_view_id' missing or invalid"); return; } RenderViewHost* rvh = RenderViewHost::FromID(render_process_id, render_view_id); if (!rvh) { AutomationJSONReply(this, reply_message).SendError( "A RenderViewHost object was not found with the given view ID."); return; } new DomOperationMessageSender(this, reply_message, true); ExecuteJavascriptInRenderViewFrame(frame_xpath, javascript, reply_message, rvh); } void TestingAutomationProvider::AddDomEventObserver( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; AutomationJSONReply reply(this, reply_message); std::string event_name; int automation_id; bool recurring; if (!args->GetString("event_name", &event_name)) { reply.SendError("'event_name' missing or invalid"); return; } if (!args->GetInteger("automation_id", &automation_id)) { reply.SendError("'automation_id' missing or invalid"); return; } if (!args->GetBoolean("recurring", &recurring)) { reply.SendError("'recurring' missing or invalid"); return; } if (!automation_event_queue_.get()) automation_event_queue_.reset(new AutomationEventQueue); int observer_id = automation_event_queue_->AddObserver( new DomEventObserver(automation_event_queue_.get(), event_name, automation_id, recurring)); scoped_ptr<DictionaryValue> return_value(new DictionaryValue); return_value->SetInteger("observer_id", observer_id); reply.SendSuccess(return_value.get()); } void TestingAutomationProvider::RemoveEventObserver( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); int observer_id; if (!args->GetInteger("observer_id", &observer_id) || !automation_event_queue_.get()) { reply.SendError("'observer_id' missing or invalid"); return; } if (automation_event_queue_->RemoveObserver(observer_id)) { reply.SendSuccess(NULL); return; } reply.SendError("Invalid observer id."); } void TestingAutomationProvider::ClearEventQueue( DictionaryValue* args, IPC::Message* reply_message) { automation_event_queue_.reset(); AutomationJSONReply(this, reply_message).SendSuccess(NULL); } void TestingAutomationProvider::GetNextEvent( DictionaryValue* args, IPC::Message* reply_message) { scoped_ptr<AutomationJSONReply> reply( new AutomationJSONReply(this, reply_message)); int observer_id; bool blocking; if (!args->GetInteger("observer_id", &observer_id)) { reply->SendError("'observer_id' missing or invalid"); return; } if (!args->GetBoolean("blocking", &blocking)) { reply->SendError("'blocking' missing or invalid"); return; } if (!automation_event_queue_.get()) { reply->SendError( "No observers are attached to the queue. Did you create any?"); return; } // The reply will be freed once a matching event is added to the queue. automation_event_queue_->GetNextEvent(reply.release(), observer_id, blocking); } void TestingAutomationProvider::GoForward( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; WebContents* web_contents; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } NavigationController& controller = web_contents->GetController(); if (!controller.CanGoForward()) { DictionaryValue dict; dict.SetBoolean("did_go_forward", false); AutomationJSONReply(this, reply_message).SendSuccess(&dict); return; } new NavigationNotificationObserver(&controller, this, reply_message, 1, false, true); controller.GoForward(); } void TestingAutomationProvider::ExecuteBrowserCommandAsyncJSON( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); int command; Browser* browser; std::string error; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { reply.SendError(error); return; } if (!args->GetInteger("accelerator", &command)) { reply.SendError("'accelerator' missing or invalid."); return; } if (!chrome::SupportsCommand(browser, command)) { reply.SendError(base::StringPrintf("Browser does not support command=%d.", command)); return; } if (!chrome::IsCommandEnabled(browser, command)) { reply.SendError(base::StringPrintf( "Browser command=%d not enabled.", command)); return; } chrome::ExecuteCommand(browser, command); reply.SendSuccess(NULL); } void TestingAutomationProvider::ExecuteBrowserCommandJSON( DictionaryValue* args, IPC::Message* reply_message) { int command; Browser* browser; std::string error; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } if (!args->GetInteger("accelerator", &command)) { AutomationJSONReply(this, reply_message).SendError( "'accelerator' missing or invalid."); return; } if (!chrome::SupportsCommand(browser, command)) { AutomationJSONReply(this, reply_message).SendError( base::StringPrintf("Browser does not support command=%d.", command)); return; } if (!chrome::IsCommandEnabled(browser, command)) { AutomationJSONReply(this, reply_message).SendError( base::StringPrintf("Browser command=%d not enabled.", command)); return; } // First check if we can handle the command without using an observer. for (size_t i = 0; i < arraysize(kSynchronousCommands); i++) { if (command == kSynchronousCommands[i]) { chrome::ExecuteCommand(browser, command); AutomationJSONReply(this, reply_message).SendSuccess(NULL); return; } } // Use an observer if we have one, otherwise fail. if (ExecuteBrowserCommandObserver::CreateAndRegisterObserver( this, browser, command, reply_message, true)) { chrome::ExecuteCommand(browser, command); return; } AutomationJSONReply(this, reply_message).SendError(base::StringPrintf( "Unable to register observer for browser command=%d.", command)); } void TestingAutomationProvider::IsMenuCommandEnabledJSON( DictionaryValue* args, IPC::Message* reply_message) { int command; Browser* browser; std::string error; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } if (!args->GetInteger("accelerator", &command)) { AutomationJSONReply(this, reply_message).SendError( "'accelerator' missing or invalid."); return; } DictionaryValue dict; dict.SetBoolean("enabled", chrome::IsCommandEnabled(browser, command)); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::GetTabInfo( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; WebContents* tab; std::string error; if (GetBrowserAndTabFromJSONArgs(args, &browser, &tab, &error)) { NavigationEntry* entry = tab->GetController().GetActiveEntry(); if (!entry) { reply.SendError("Unable to get active navigation entry"); return; } DictionaryValue dict; dict.SetString("title", entry->GetTitleForDisplay(std::string())); dict.SetString("url", entry->GetVirtualURL().spec()); reply.SendSuccess(&dict); } else { reply.SendError(error); } } void TestingAutomationProvider::GetTabCountJSON( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); Browser* browser; std::string error; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { reply.SendError(error); return; } DictionaryValue dict; dict.SetInteger("tab_count", browser->tab_strip_model()->count()); reply.SendSuccess(&dict); } void TestingAutomationProvider::GoBack( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; WebContents* web_contents; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } NavigationController& controller = web_contents->GetController(); if (!controller.CanGoBack()) { DictionaryValue dict; dict.SetBoolean("did_go_back", false); AutomationJSONReply(this, reply_message).SendSuccess(&dict); return; } new NavigationNotificationObserver(&controller, this, reply_message, 1, false, true); controller.GoBack(); } void TestingAutomationProvider::ReloadJSON( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; WebContents* web_contents; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } NavigationController& controller = web_contents->GetController(); new NavigationNotificationObserver(&controller, this, reply_message, 1, false, true); controller.Reload(false); } void TestingAutomationProvider::CaptureEntirePageJSON( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; WebContents* web_contents; std::string error; if (!GetTabFromJSONArgs(args, &web_contents, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } base::FilePath::StringType path_str; if (!args->GetString("path", &path_str)) { AutomationJSONReply(this, reply_message) .SendError("'path' missing or invalid"); return; } RenderViewHost* render_view = web_contents->GetRenderViewHost(); if (render_view) { base::FilePath path(path_str); // This will delete itself when finished. PageSnapshotTaker* snapshot_taker = new PageSnapshotTaker( this, reply_message, web_contents, path); snapshot_taker->Start(); } else { AutomationJSONReply(this, reply_message) .SendError("Tab has no associated RenderViewHost"); } } void TestingAutomationProvider::GetCookiesJSON( DictionaryValue* args, IPC::Message* reply_message) { automation_util::GetCookiesJSON(this, args, reply_message); } void TestingAutomationProvider::DeleteCookieJSON( DictionaryValue* args, IPC::Message* reply_message) { automation_util::DeleteCookieJSON(this, args, reply_message); } void TestingAutomationProvider::SetCookieJSON( DictionaryValue* args, IPC::Message* reply_message) { automation_util::SetCookieJSON(this, args, reply_message); } void TestingAutomationProvider::GetCookiesInBrowserContext( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); WebContents* web_contents; std::string value, url_string; int windex, value_size; if (!args->GetInteger("windex", &windex)) { reply.SendError("'windex' missing or invalid."); return; } web_contents = automation_util::GetWebContentsAt(windex, 0); if (!web_contents) { reply.SendError("'windex' does not refer to a browser window."); return; } if (!args->GetString("url", &url_string)) { reply.SendError("'url' missing or invalid."); return; } GURL url(url_string); if (!url.is_valid()) { reply.SendError("Invalid url."); return; } automation_util::GetCookies(url, web_contents, &value_size, &value); if (value_size == -1) { reply.SendError( base::StringPrintf("Unable to retrieve cookies for url=%s.", url_string.c_str())); return; } DictionaryValue dict; dict.SetString("cookies", value); reply.SendSuccess(&dict); } void TestingAutomationProvider::DeleteCookieInBrowserContext( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); WebContents* web_contents; std::string cookie_name, error, url_string; int windex; bool success = false; if (!args->GetInteger("windex", &windex)) { reply.SendError("'windex' missing or invalid."); return; } web_contents = automation_util::GetWebContentsAt(windex, 0); if (!web_contents) { reply.SendError("'windex' does not refer to a browser window."); return; } if (!args->GetString("cookie_name", &cookie_name)) { reply.SendError("'cookie_name' missing or invalid."); return; } if (!args->GetString("url", &url_string)) { reply.SendError("'url' missing or invalid."); return; } GURL url(url_string); if (!url.is_valid()) { reply.SendError("Invalid url."); return; } automation_util::DeleteCookie(url, cookie_name, web_contents, &success); if (!success) { reply.SendError( base::StringPrintf("Failed to delete cookie with name=%s for url=%s.", cookie_name.c_str(), url_string.c_str())); return; } reply.SendSuccess(NULL); } void TestingAutomationProvider::SetCookieInBrowserContext( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); WebContents* web_contents; std::string value, error, url_string; int windex, response_value = -1; if (!args->GetInteger("windex", &windex)) { reply.SendError("'windex' missing or invalid."); return; } web_contents = automation_util::GetWebContentsAt(windex, 0); if (!web_contents) { reply.SendError("'windex' does not refer to a browser window."); return; } if (!args->GetString("value", &value)) { reply.SendError("'value' missing or invalid."); return; } if (!args->GetString("url", &url_string)) { reply.SendError("'url' missing or invalid."); return; } GURL url(url_string); if (!url.is_valid()) { reply.SendError("Invalid url."); return; } automation_util::SetCookie(url, value, web_contents, &response_value); if (response_value != 1) { reply.SendError(base::StringPrintf( "Unable set cookie for url=%s.", url_string.c_str())); return; } reply.SendSuccess(NULL); } void TestingAutomationProvider::GetTabIds( DictionaryValue* args, IPC::Message* reply_message) { ListValue* id_list = new ListValue(); for (chrome::BrowserIterator it; !it.done(); it.Next()) { Browser* browser = *it; for (int i = 0; i < browser->tab_strip_model()->count(); ++i) { int id = SessionTabHelper::FromWebContents( browser->tab_strip_model()->GetWebContentsAt(i))->session_id().id(); id_list->Append(Value::CreateIntegerValue(id)); } } DictionaryValue dict; dict.Set("ids", id_list); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::GetViews( DictionaryValue* args, IPC::Message* reply_message) { ListValue* view_list = new ListValue(); printing::PrintPreviewDialogController* preview_controller = printing::PrintPreviewDialogController::GetInstance(); for (chrome::BrowserIterator it; !it.done(); it.Next()) { Browser* browser = *it; for (int i = 0; i < browser->tab_strip_model()->count(); ++i) { WebContents* contents = browser->tab_strip_model()->GetWebContentsAt(i); DictionaryValue* dict = new DictionaryValue(); AutomationId id = automation_util::GetIdForTab(contents); dict->Set("auto_id", id.ToValue()); view_list->Append(dict); if (preview_controller) { WebContents* preview_dialog = preview_controller->GetPrintPreviewForContents(contents); if (preview_dialog) { DictionaryValue* dict = new DictionaryValue(); AutomationId id = automation_util::GetIdForTab(preview_dialog); dict->Set("auto_id", id.ToValue()); view_list->Append(dict); } } } } ExtensionProcessManager* extension_mgr = extensions::ExtensionSystem::Get(profile())->process_manager(); const ExtensionProcessManager::ViewSet all_views = extension_mgr->GetAllViews(); ExtensionProcessManager::ViewSet::const_iterator iter; for (iter = all_views.begin(); iter != all_views.end(); ++iter) { content::RenderViewHost* host = (*iter); AutomationId id = automation_util::GetIdForExtensionView(host); if (!id.is_valid()) continue; const Extension* extension = extension_mgr->GetExtensionForRenderViewHost(host); DictionaryValue* dict = new DictionaryValue(); dict->Set("auto_id", id.ToValue()); dict->SetString("extension_id", extension->id()); view_list->Append(dict); } DictionaryValue dict; dict.Set("views", view_list); AutomationJSONReply(this, reply_message).SendSuccess(&dict); } void TestingAutomationProvider::IsTabIdValid( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); int id; if (!args->GetInteger("id", &id)) { reply.SendError("'id' missing or invalid"); return; } bool is_valid = false; for (chrome::BrowserIterator it; !it.done(); it.Next()) { Browser* browser = *it; for (int i = 0; i < browser->tab_strip_model()->count(); ++i) { WebContents* tab = browser->tab_strip_model()->GetWebContentsAt(i); SessionTabHelper* session_tab_helper = SessionTabHelper::FromWebContents(tab); if (session_tab_helper->session_id().id() == id) { is_valid = true; break; } } } DictionaryValue dict; dict.SetBoolean("is_valid", is_valid); reply.SendSuccess(&dict); } void TestingAutomationProvider::DoesAutomationObjectExist( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); AutomationId id; std::string error_msg; if (!GetAutomationIdFromJSONArgs(args, "auto_id", &id, &error_msg)) { reply.SendError(error_msg); return; } DictionaryValue dict; dict.SetBoolean( "does_exist", automation_util::DoesObjectWithIdExist(id, profile())); reply.SendSuccess(&dict); } void TestingAutomationProvider::CloseTabJSON( DictionaryValue* args, IPC::Message* reply_message) { Browser* browser; WebContents* tab; std::string error; bool wait_until_closed = false; // ChromeDriver does not use this. args->GetBoolean("wait_until_closed", &wait_until_closed); // Close tabs synchronously. if (GetBrowserAndTabFromJSONArgs(args, &browser, &tab, &error)) { if (wait_until_closed) { new TabClosedNotificationObserver(this, wait_until_closed, reply_message, true); } chrome::CloseWebContents(browser, tab, false); if (!wait_until_closed) AutomationJSONReply(this, reply_message).SendSuccess(NULL); return; } // Close other types of views asynchronously. RenderViewHost* view; if (!GetRenderViewFromJSONArgs(args, profile(), &view, &error)) { AutomationJSONReply(this, reply_message).SendError(error); return; } view->ClosePage(); AutomationJSONReply(this, reply_message).SendSuccess(NULL); } void TestingAutomationProvider::SetViewBounds( base::DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); int x, y, width, height; if (!args->GetInteger("bounds.x", &x) || !args->GetInteger("bounds.y", &y) || !args->GetInteger("bounds.width", &width) || !args->GetInteger("bounds.height", &height)) { reply.SendError("Missing or invalid 'bounds'"); return; } Browser* browser; std::string error; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { reply.SendError(Error(automation::kInvalidId, error)); return; } BrowserWindow* browser_window = browser->window(); if (browser_window->IsMaximized()) { browser_window->Restore(); } browser_window->SetBounds(gfx::Rect(x, y, width, height)); reply.SendSuccess(NULL); } void TestingAutomationProvider::MaximizeView( base::DictionaryValue* args, IPC::Message* reply_message) { Browser* browser; std::string error; if (!GetBrowserFromJSONArgs(args, &browser, &error)) { AutomationJSONReply(this, reply_message) .SendError(Error(automation::kInvalidId, error)); return; } #if defined(OS_LINUX) // Maximization on Linux is asynchronous, so create an observer object to be // notified upon maximization completion. new WindowMaximizedObserver(this, reply_message); #endif // defined(OS_LINUX) browser->window()->Maximize(); #if !defined(OS_LINUX) // Send success reply right away for OS's with synchronous maximize command. AutomationJSONReply(this, reply_message).SendSuccess(NULL); #endif // !defined(OS_LINUX) } void TestingAutomationProvider::ActivateTabJSON( DictionaryValue* args, IPC::Message* reply_message) { if (SendErrorIfModalDialogActive(this, reply_message)) return; AutomationJSONReply reply(this, reply_message); Browser* browser; WebContents* web_contents; std::string error; if (!GetBrowserAndTabFromJSONArgs(args, &browser, &web_contents, &error)) { reply.SendError(error); return; } TabStripModel* tab_strip = browser->tab_strip_model(); tab_strip->ActivateTabAt(tab_strip->GetIndexOfWebContents(web_contents), true); reply.SendSuccess(NULL); } void TestingAutomationProvider::IsPageActionVisible( base::DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); WebContents* tab; std::string error; if (!GetTabFromJSONArgs(args, &tab, &error)) { reply.SendError(error); return; } Browser* browser = automation_util::GetBrowserForTab(tab); const Extension* extension; if (!GetEnabledExtensionFromJSONArgs( args, "extension_id", browser->profile(), &extension, &error)) { reply.SendError(error); return; } if (!browser) { reply.SendError("Tab does not belong to an open browser"); return; } ExtensionAction* page_action = ExtensionActionManager::Get(browser->profile())-> GetPageAction(*extension); if (!page_action) { reply.SendError("Extension doesn't have any page action"); return; } EnsureTabSelected(browser, tab); bool is_visible = false; LocationBarTesting* loc_bar = browser->window()->GetLocationBar()->GetLocationBarForTesting(); size_t page_action_visible_count = static_cast<size_t>(loc_bar->PageActionVisibleCount()); for (size_t i = 0; i < page_action_visible_count; ++i) { if (loc_bar->GetVisiblePageAction(i) == page_action) { is_visible = true; break; } } DictionaryValue dict; dict.SetBoolean("is_visible", is_visible); reply.SendSuccess(&dict); } void TestingAutomationProvider::GetChromeDriverAutomationVersion( DictionaryValue* args, IPC::Message* reply_message) { DictionaryValue reply_dict; reply_dict.SetInteger("version", automation::kChromeDriverAutomationVersion); AutomationJSONReply(this, reply_message).SendSuccess(&reply_dict); } void TestingAutomationProvider::CreateNewAutomationProvider( DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(this, reply_message); std::string channel_id; if (!args->GetString("channel_id", &channel_id)) { reply.SendError("'channel_id' missing or invalid"); return; } AutomationProvider* provider = new TestingAutomationProvider(profile_); provider->DisableInitialLoadObservers(); // TODO(kkania): Remove this when crbug.com/91311 is fixed. // Named server channels should ideally be created and closed on the file // thread, within the IPC channel code. base::ThreadRestrictions::ScopedAllowIO allow_io; if (!provider->InitializeChannel( automation::kNamedInterfacePrefix + channel_id)) { reply.SendError("Failed to initialize channel: " + channel_id); return; } DCHECK(g_browser_process); g_browser_process->GetAutomationProviderList()->AddProvider(provider); reply.SendSuccess(NULL); } void TestingAutomationProvider::WaitForTabCountToBecome( int browser_handle, int target_tab_count, IPC::Message* reply_message) { if (!browser_tracker_->ContainsHandle(browser_handle)) { AutomationMsg_WaitForTabCountToBecome::WriteReplyParams(reply_message, false); Send(reply_message); return; } Browser* browser = browser_tracker_->GetResource(browser_handle); // The observer will delete itself. new TabCountChangeObserver(this, browser, reply_message, target_tab_count); } void TestingAutomationProvider::WaitForInfoBarCount( int tab_handle, size_t target_count, IPC::Message* reply_message) { if (!tab_tracker_->ContainsHandle(tab_handle)) { AutomationMsg_WaitForInfoBarCount::WriteReplyParams(reply_message_, false); Send(reply_message_); return; } NavigationController* controller = tab_tracker_->GetResource(tab_handle); if (!controller) { AutomationMsg_WaitForInfoBarCount::WriteReplyParams(reply_message_, false); Send(reply_message_); return; } // The delegate will delete itself. new InfoBarCountObserver(this, reply_message, controller->GetWebContents(), target_count); } void TestingAutomationProvider::WaitForProcessLauncherThreadToGoIdle( IPC::Message* reply_message) { new WaitForProcessLauncherThreadToGoIdleObserver(this, reply_message); } void TestingAutomationProvider::OnRemoveProvider() { if (g_browser_process) g_browser_process->GetAutomationProviderList()->RemoveProvider(this); } void TestingAutomationProvider::EnsureTabSelected(Browser* browser, WebContents* tab) { TabStripModel* tab_strip = browser->tab_strip_model(); if (tab_strip->GetActiveWebContents() != tab) tab_strip->ActivateTabAt(tab_strip->GetIndexOfWebContents(tab), true); }
{ "content_hash": "0c0c6148525f37fed640933d305308f0", "timestamp": "", "source": "github", "line_count": 5931, "max_line_length": 80, "avg_line_length": 36.84117349519474, "alnum_prop": 0.6889682158303013, "repo_name": "codenote/chromium-test", "id": "64421079bc7e286976d07711e478b4b7b725f202", "size": "218505", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "chrome/browser/automation/testing_automation_provider.cc", "mode": "33188", "license": "bsd-3-clause", "language": [], "symlink_target": "" }
class LiquidValidator::Validator attr_reader :errors, :template, :error_mode def initialize(template, error_mode: :strict) @template = template @error_mode = error_mode @errors = [] @valid = true run_validations_on_template end def valid? @valid end private def run_validations_on_template if Gem.loaded_specs['liquid'].version.release >= Gem::Version.create('3') ::Liquid::Template.parse(template, error_mode: :strict) else ::Liquid::Template.parse(template) end rescue Liquid::SyntaxError => e @valid = false @errors << e.message end end
{ "content_hash": "63f32d75972d9a3d79f0e559cf5d509f", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 77, "avg_line_length": 22.071428571428573, "alnum_prop": 0.6585760517799353, "repo_name": "jeremywrowe/liquid-validator", "id": "e5cae8504be20ff25c8b87b63d18443a7ff0cdb4", "size": "618", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "lib/liquid-validator/validator.rb", "mode": "33188", "license": "mit", "language": [ { "name": "Ruby", "bytes": "12089" } ], "symlink_target": "" }
<!DOCTYPE html> {% load staticfiles %} <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 --> <title>Minimalist Website</title> <!-- Bootstrap --> <link rel="stylesheet" href="{% static "css/main.css" %}"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> {% block head %}{% endblock %} <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/">Minimalist Website</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="/catalog">Catalog</a></li> <li><a href="/blog">Blog</a></li> <li><a href="/cart">View Cart</a></li> <li><a href="/docs/api">API Docs</a></li> <li><a href="/about">About</a></li> </ul> </div><!--/.nav-collapse --> </div> </nav> <div class="container"> <div class=""> {% block content %}{% endblock %} </div> </div><!-- /.container --> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> {% block scripts %}{% endblock %} </body> </html>
{ "content_hash": "03c8219f79028ae4130d278507316a59", "timestamp": "", "source": "github", "line_count": 62, "max_line_length": 156, "avg_line_length": 42.564516129032256, "alnum_prop": 0.5922697991663509, "repo_name": "brady-vitrano/ecommerce-demo", "id": "a9c43c04057bf610a1ad49d4a00032b80cb09205", "size": "2639", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "website/templates/base.html", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "719" }, { "name": "HTML", "bytes": "39165" }, { "name": "Python", "bytes": "52407" } ], "symlink_target": "" }
class <%= migration_name.camelize %> < ActiveRecord::Migration def change create_table :<%= table_name %> do |t| t.string :email, null: false t.string :name t.string :phone t.text :comment t.string :theme t.boolean :active, default: true t.boolean :sysadm, default: false t.string :crypted_password, null: false t.string :salt, null: false <%- if options.user_activation? -%> t.string :activation_state, default: nil t.string :activation_token, default: nil t.datetime :activation_token_expires_at, default: nil <%- end -%> <%- if options.reset_password? -%> t.string :reset_password_token, default: nil t.datetime :reset_password_token_expires_at, default: nil t.datetime :reset_password_email_sent_at, default: nil <%- end -%> <%- if options.remember_me? -%> t.boolean :remember_me t.string :remember_me_token, default: nil t.datetime :remember_me_token_expires_at, default: nil <%- end -%> <%- if options.brute_force_protection? -%> t.integer :failed_logins_count, default: 0 t.datetime :lock_expires_at, default: nil t.string :unlock_token, default: nil <%- end -%> <%- if options.activity_logging? -%> t.datetime :last_login_at, default: nil t.datetime :last_logout_at, default: nil t.datetime :last_activity_at, default: nil t.string :last_login_from_ip_address, default: nil <%- end -%> t.timestamps end add_index :<%= table_name %>, :email, unique: true add_index :<%= table_name %>, :sysadm <%- if options.user_activation? -%> add_index :<%= table_name %>, :activation_token <%- end -%> <%- if options.reset_password? -%> add_index :<%= table_name %>, :reset_password_token <%- end -%> <%- if options.remember_me? -%> add_index :<%= table_name %>, :remember_me_token <%- end -%> <%- if options.brute_force_protection? -%> add_index :<%= table_name %>, :unlock_token <%- end -%> <%- if options.activity_logging? -%> add_index :<%= table_name %>, [:last_logout_at, :last_activity_at] <%- end -%> end end
{ "content_hash": "84990e43074b8641e8d54856dcc594e5", "timestamp": "", "source": "github", "line_count": 62, "max_line_length": 70, "avg_line_length": 34.54838709677419, "alnum_prop": 0.6106442577030813, "repo_name": "volkerwiegand/scaffold_plus", "id": "5d1344c6e2a578ba3739784ee10179356a77d328", "size": "2142", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "lib/generators/scaffold_plus/sorcery/templates/user_migration.rb", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "8766" }, { "name": "Makefile", "bytes": "313" }, { "name": "Ruby", "bytes": "59999" } ], "symlink_target": "" }
/************************************************************************** iPXE - Network Bootstrap Program Literature dealing with the network protocols: ARP - RFC826 RARP - RFC903 UDP - RFC768 BOOTP - RFC951, RFC2132 (vendor extensions) DHCP - RFC2131, RFC2132 (options) TFTP - RFC1350, RFC2347 (options), RFC2348 (blocksize), RFC2349 (tsize) RPC - RFC1831, RFC1832 (XDR), RFC1833 (rpcbind/portmapper) **************************************************************************/ FILE_LICENCE ( GPL2_OR_LATER ); #include <stdio.h> #include <stdlib.h> #include <ipxe/init.h> #include <ipxe/features.h> #include <ipxe/shell.h> #include <ipxe/image.h> #include <ipxe/keys.h> #include <usr/prompt.h> #include <usr/autoboot.h> #include <config/general.h> #define NORMAL "\033[0m" #define BOLD "\033[1m" #define CYAN "\033[36m" /** The "scriptlet" setting */ struct setting scriptlet_setting __setting ( SETTING_MISC ) = { .name = "scriptlet", .description = "Boot scriptlet", .tag = DHCP_EB_SCRIPTLET, .type = &setting_type_string, }; /** * Prompt for shell entry * * @ret enter_shell User wants to enter shell */ static int shell_banner ( void ) { /* Skip prompt if timeout is zero */ if ( BANNER_TIMEOUT <= 0 ) return 0; return ( prompt ( "\nPress Ctrl-B for the iPXE command line...", ( BANNER_TIMEOUT * 100 ), CTRL_B ) == 0 ); } /** * Main entry point * * @ret rc Return status code */ __asmcall int main ( void ) { struct feature *feature; struct image *image; char *scriptlet; /* Some devices take an unreasonably long time to initialise */ printf ( PRODUCT_SHORT_NAME " initialising devices..." ); initialise(); startup(); printf ( "ok\n" ); /* * Print welcome banner * * * If you wish to brand this build of iPXE, please do so by * defining the string PRODUCT_NAME in config/general.h. * * While nothing in the GPL prevents you from removing all * references to iPXE or http://ipxe.org, we prefer you not to * do so. * */ printf ( NORMAL "\n\n" PRODUCT_NAME "\n" BOLD "iPXE " VERSION NORMAL " -- Open Source Network Boot Firmware -- " CYAN "http://ipxe.org" NORMAL "\n" "Features:" ); for_each_table_entry ( feature, FEATURES ) printf ( " %s", feature->name ); printf ( "\n" ); /* Boot system */ if ( ( image = first_image() ) != NULL ) { /* We have an embedded image; execute it */ image_exec ( image ); } else if ( shell_banner() ) { /* User wants shell; just give them a shell */ shell(); } else { fetch_string_setting_copy ( NULL, &scriptlet_setting, &scriptlet ); if ( scriptlet ) { /* User has defined a scriptlet; execute it */ system ( scriptlet ); free ( scriptlet ); } else { /* Try booting. If booting fails, offer the * user another chance to enter the shell. */ autoboot(); #ifndef VBOX if ( shell_banner() ) shell(); #endif } } shutdown_exit(); return 0; }
{ "content_hash": "82c2dd94d504003fc53399f0f94c62dc", "timestamp": "", "source": "github", "line_count": 120, "max_line_length": 75, "avg_line_length": 24.416666666666668, "alnum_prop": 0.610580204778157, "repo_name": "egraba/vbox_openbsd", "id": "9ee94e027210d48a2b79674f80fed9ede1b7c985", "size": "2930", "binary": false, "copies": "12", "ref": "refs/heads/master", "path": "VirtualBox-5.0.0/src/VBox/Devices/PC/ipxe/src/core/main.c", "mode": "33188", "license": "mit", "language": [ { "name": "Ada", "bytes": "88714" }, { "name": "Assembly", "bytes": "4303680" }, { "name": "AutoIt", "bytes": "2187" }, { "name": "Batchfile", "bytes": "95534" }, { "name": "C", "bytes": "192632221" }, { "name": "C#", "bytes": "64255" }, { "name": "C++", "bytes": "83842667" }, { "name": "CLIPS", "bytes": "5291" }, { "name": "CMake", "bytes": "6041" }, { "name": "CSS", "bytes": "26756" }, { "name": "D", "bytes": "41844" }, { "name": "DIGITAL Command Language", "bytes": "56579" }, { "name": "DTrace", "bytes": "1466646" }, { "name": "GAP", "bytes": "350327" }, { "name": "Groff", "bytes": "298540" }, { "name": "HTML", "bytes": "467691" }, { "name": "IDL", "bytes": "106734" }, { "name": "Java", "bytes": "261605" }, { "name": "JavaScript", "bytes": "80927" }, { "name": "Lex", "bytes": "25122" }, { "name": "Logos", "bytes": "4941" }, { "name": "Makefile", "bytes": "426902" }, { "name": "Module Management System", "bytes": "2707" }, { "name": "NSIS", "bytes": "177212" }, { "name": "Objective-C", "bytes": "5619792" }, { "name": "Objective-C++", "bytes": "81554" }, { "name": "PHP", "bytes": "58585" }, { "name": "Pascal", "bytes": "69941" }, { "name": "Perl", "bytes": "240063" }, { "name": "PowerShell", "bytes": "10664" }, { "name": "Python", "bytes": "9094160" }, { "name": "QMake", "bytes": "3055" }, { "name": "R", "bytes": "21094" }, { "name": "SAS", "bytes": "1847" }, { "name": "Shell", "bytes": "1460572" }, { "name": "SourcePawn", "bytes": "4139" }, { "name": "TypeScript", "bytes": "142342" }, { "name": "Visual Basic", "bytes": "7161" }, { "name": "XSLT", "bytes": "1034475" }, { "name": "Yacc", "bytes": "22312" } ], "symlink_target": "" }
(function($) { /** * @var object Reference to the BlobBuilder, if the browser supports * it. If not, this variable will be undefined. */ var BlobBuilder = window.BlobBuilder || window.MozBlobBuilder || window.WebKitBlobBuilder || window.MSBlobBuilder || undefined; /** * @var object Reference to the FormData, if the browser supports it. * If not, this variable will be undefined. */ var FormData = window.FormData || undefined; /** * @var boolean True when the webpage is shown on a touch compatible device. */ var isTouchDevice = "ontouchstart" in document.documentElement; /** * Convert a data URI to a blob. * @see http://stackoverflow.com/questions/4998908/convert-data-uri-to-file-then-append-to-formdata * @return Blob Object containing the dataURI. */ function dataURItoBlob(dataURI, callback) { var byteString = atob(dataURI.split(",")[1]); var mimeString = dataURI.split(",")[0].split(":")[1].split(";")[0]; var ab = new ArrayBuffer(byteString.length); var ia = new Uint8Array(ab); for (var i = 0; i < byteString.length; i++) { ia[i] = byteString.charCodeAt(i); } var bb = new BlobBuilder(); bb.append(ab); return bb.getBlob(mimeString); } /** * Translate a touch event into a mouse event. Handles only * single touches. * @param event Event object containing the touch. */ function touchToMouseEvent(event) { // Only single touches if (event.originalEvent.touches.length > 1) return; // Set data var touch = event.originalEvent.changedTouches[0]; var newEvent = document.createEvent('MouseEvents'); var type = null; var simulateClick = false; // Determine type switch(event.type) { case "touchstart": type = "mousedown"; break; case "touchmove": type = "mousemove"; break; case "touchend": type = "mouseup"; break; default: return; } // Handle click events if (event.type == "touchstart") { event.target.startX = touch.clientX; event.target.startY = touch.clientY; } else if (event.type == "touchend") { simulateClick = Math.abs(event.target.startX - touch.clientX) < 10 || Math.abs(event.target.startY - touch.clientY) < 10; if (simulateClick) type = "click"; } // Initialize event newEvent.initMouseEvent( type, true, true, window, 1, touch.screenX, touch.screenY, touch.clientX, touch.clientY, false, false, false, false, 0, null ); // Done event.target.dispatchEvent(newEvent); event.preventDefault(); } /** * Detect support for the canvas element. * @return true if canvas element is supported */ function isCanvasSupported() { var elem = document.createElement("canvas"); return !!(elem.getContext && elem.getContext("2d")); } /** * Calculate the Eucledian distance from elements boundings * @param element jQuery element * @return double Pythagoras distance */ function distance(element) { var x = (element.position().left + element.width()) - element.position().left; var y = (element.position().top + element.height()) - element.position().top; return Math.sqrt(x*x + y*y); } /** * @var object CSS for overlay and markers */ var css = { // CSS for the overlay and rectangles container base: { "position": "absolute", "top": 0, "left": 0, "margin": 0, "z-index": 4900 }, // CSS for the rectangles container markers: { "z-index": 5000, "background-color": "rgba(0,0,0,0)" }, // CSS for the rectangles drawn rectangle: { "position": "absolute", "font-size": "14px", "font-weight": "bold", "z-index": 5500, "border": "2px solid #000" }, // CSS to make everything unselectable unselectable: { "-moz-user-select": "-moz-none", "-khtml-user-select": "none", "-webkit-user-select": "none", "user-select": "none" } } /** * @var object The 'almighty' HTMLFeedback object */ var HTMLFeedback = {} /** * @var object List of all HTMLFeedback instances */ HTMLFeedback.instances = {}; /** * @var object Default plugin options */ HTMLFeedback.defaults = { /** * @var boolean If true, upload the data as URI instead as a multipart * file. Default is false if browser has support for BlobBuilder. */ uploadAsURI: (BlobBuilder ? false : true), /** * @var boolean If true, use the canvas element as overlay for * the screen. Default is true if the browser has support for the * canvas element. */ useCanvas: isCanvasSupported(), /** * @var int Minimal distance for a drawn square. Small nummer * allows small squares. Please note: on touch devices the number * will be at least 10px. */ minimalDistance: 10, /** * @var object Rectangle color (in RGBA for opacity) */ color: "rgba(255,255,255,0)", /** * @var element Reference to a container object where the canvas * and markers will be drawn over. Defaults to document. */ container: $(document), /** * @var string Name of the element for file uploading. */ uploadName: 'screenshot', /** * @var string Mime type of the file */ uploadMIME: 'image/png', /** * @var callback Before a rectangle has been drawn */ onRectangleStart: function(rectangle, x, y) {}, /** * @var callback After a rectangle has been drawn */ onRectangleEnd: function(rectangle, x, y) { rectangle.text("Click me to remove"); rectangle.mouseover(function(e) { rectangle.text("Click me to remove"); }); rectangle.mouseout(function(e) { rectangle.text(""); }); }, /** * @var callback Before redering has started */ onPreRender: function() { alert("HTMLFeedback will now create a screenshot of the web elements " + "ONLY. The overlay and feedback window will hide for a second " + "and will then show again. Rendering can take a few seconds."); }, /** * @var callback After rendering has completed */ onPostRender: function(canvas) {}, /** * @var callback Show event */ onShow: function() {}, /** * @var callback Hide event */ onHide: function() {} } /** * (Re)draw the canvas element and the markers. * @param instance HTMLFeedback object instance */ HTMLFeedback.paint = function(instance) { // Draw overlay if (instance.options.useCanvas) { // Get context var context = instance.overlay[0].getContext("2d"); // Draw basic background context.clearRect(0, 0, instance.overlay.width(), instance.overlay.height()); context.fillStyle = "rgba(0, 0, 0, 0.5)"; context.fillRect(0, 0, instance.overlay.width(), instance.overlay.height()); } // Draw rectangles instance.markers.find("div").each(function() { var element = $(this); var borderWidth = parseInt(element.css("border-left-width"), 10); // Make cutout in canvas if (instance.options.useCanvas) { context.clearRect( element.position().left, element.position().top, element.width() + borderWidth * 2, element.height() + borderWidth * 2 ); } }); } /** * Resize the overlay and markers container. * @param instance HTMLFeedback object instance */ HTMLFeedback.resize = function(instance) { // Resize overlay if (instance.options.useCanvas) { instance.overlay.prop("width", instance.options.container.width()); instance.overlay.prop("height", instance.options.container.height()); } // Resize markers instance.markers.width(instance.options.container.width()); instance.markers.height(instance.options.container.height()); } /** * Clear all rectangles and redraw everything * @param instance HTMLFeedback object instance */ HTMLFeedback.clear = function(instance) { instance.markers.html(""); HTMLFeedback.paint(instance); } /** * Show the HTMLFeedback overlay and markers. Calls the onShow callback. * @param instance HTMLFeedback object instance */ HTMLFeedback.show = function(instance) { if (instance.options.useCanvas) instance.overlay.show(); instance.markers.show(); instance.options.onShow(); } /** * Hide the HTMLFeedback overlay and markers. Calls the onHide callback. * @param instance HTMLFeedback object instance */ HTMLFeedback.hide = function(instance) { if (instance.options.useCanvas) instance.overlay.hide(); instance.markers.hide(); instance.options.onHide(); } /** * Quick helper to hide or show the overlay and markers * @param instance HTMLFeedback object instance */ HTMLFeedback.toggle = function(instance) { if (instance.markers.is(":visible")) { HTMLFeedback.hide(instance); } else { HTMLFeedback.show(instance); } } /** * Render the screenshot and call the onPostRender callback with the * rendered canvas element as first parameter * * @param instance HTMLFeedback object instance */ HTMLFeedback.render = function(instance) { if (instance.options.useCanvas) instance.overlay.hide(); instance.options.onPreRender(); html2canvas(instance.element, { onrendered: function(canvas) { instance.options.onPostRender(canvas) // Show overlay again if (instance.options.useCanvas) instance.overlay.show(); } }); } /** * Create screenshot and upload it via AJAX. The extra parameter is passed * to the jQuery.ajax method. * * @param instance HTMLFeedback object instance * @param extra jQuery AJAX parameters * @see http://api.jquery.com/jQuery.ajax/ */ HTMLFeedback.upload = function(instance, extra) { var imageData = null; var imageMime = instance.options.uploadMime; var uploadName = instance.options.uploadName; if (instance.options.useCanvas) instance.overlay.hide(); instance.options.onPreRender(); // Upload via XHR2 html2canvas(instance.element, { onrendered: function(canvas) { instance.options.onPostRender(canvas) // Create the data if (instance.options.uploadAsURI) { // As 'raw' string imageData = canvas.toDataURL(imageMime) } else { if (canvas.toBlob ? true : false) { // Native canvas.toBlob(function(blob) { imageData = blob; }, imageMime); } else { // Via dataURI -> Blob imageData = dataURItoBlob(canvas.toDataURL(imageMime)); } } if (FormData) { // Prefer upload via FormData object var form = new FormData(); form.append(uploadName, imageData); $.each(extra.data || {}, function(key, value) { form.append(key, value); }); extra.data = form; } else { // Or the old-fashioned way extra.data = extra.data || {}; extra.data[uploadName] = imageData; } // And upload via ajax $.ajax($.extend({ cache: false, contentType: false, processData: false, type: 'POST' }, extra)); // Show overlay again if (instance.options.useCanvas) instance.overlay.show(); } }); } /** * Initialize a new HTMLFeedback instance. * @param element jQuery object to bind to * @param option Plugin options. * @see HTMLFeedback.defaults */ HTMLFeedback.init = function(element, options) { var options = $.extend(HTMLFeedback.defaults, options); // Create required elements and add them to the element var overlay = options.useCanvas ? $("<canvas />").css(css.base).css(css.unselectable).appendTo(element) : null; var markers = $("<div />").css(css.base).css(css.markers).css(css.unselectable).appendTo(element); // Create an instance var instance = HTMLFeedback.instances[element] = { overlay: overlay, markers: markers, options: options, element: element }; var rectangle = null; // Attach the resize hook to the window $(window).resize(function() { HTMLFeedback.resize(instance); HTMLFeedback.paint(instance); }); markers.mousedown(function(e) { rectangle = $("<div />").css({ "left" : e.pageX, "top" : e.pageY }).css($.extend( css.rectangle, css.unselectable, { "background-color": instance.options.color } )); //alert(instance.options.color); var rectangleLeft = e.pageX; var rectangleTop = e.pageY; // Execute callback instance.options.onRectangleStart( rectangle, rectangleLeft, rectangleTop ); // Add it to the DOM rectangle.appendTo(markers) markers.mousemove(function(e) { rectangle.width(Math.abs(e.pageX - rectangleLeft)); rectangle.height(Math.abs(e.pageY - rectangleTop)); if(e.pageX < rectangleLeft) { rectangle.css("left", e.pageX); } if(e.pageY < rectangleTop) { rectangle.css("top", e.pageY); } }); }); markers.mouseup(function(e) { var self = rectangle; var remove = (function() { self.remove(); HTMLFeedback.paint(instance); }); // Ignore small rectangles if (distance(self) < options.minimalDistance) { remove(); } else { instance.options.onRectangleEnd(self, e.pageX, e.pageY); self.mousedown(function() { return false; }); self.click(remove); } markers.unbind("mousemove"); HTMLFeedback.paint(instance); }); // Map touch events if (isTouchDevice) { instance.markers.bind("touchstart", touchToMouseEvent); instance.markers.bind("touchmove", touchToMouseEvent); instance.markers.bind("touchend", touchToMouseEvent); instance.markers.bind("touchcancel", touchToMouseEvent); } // Initialize HTMLFeedback.hide(instance); HTMLFeedback.resize(instance); HTMLFeedback.clear(instance); }; /** * Bind the plugin to the jQuery prototype object. * * Once a instance has been initialized, you can execute commands on the * instance. Instead of passing options, you can pass a string. For example: * * $("body").htmlfeedback("upload", ajaxRequest); * * Supported actions: * * show -- Show the overlay and markers. * hide -- Hide the overlay and markers. * toggle -- Hide or show the overlay and the markers. * render -- Create a screenshot and call the onPostRender callback * with a reference to the newly created canvas. * upload -- Upload a screenshot. Second parameter is a normal * AJAX request object. * reset -- Reset HTMLFeedback. Clears all markers. * color -- Set the marker color. */ $.fn.htmlfeedback = function(input, extra){ var type = typeof input; var self = $(this); if (arguments.length == 0 || type == "object") { HTMLFeedback.init(self, input); } else if (type == "string") { var instance = HTMLFeedback.instances[self]; switch (input.toLowerCase()) { case "show": HTMLFeedback.show(instance); break; case "hide": HTMLFeedback.hide(instance); break; case "toggle": HTMLFeedback.toggle(instance); break; case "render": HTMLFeedback.render(instance, extra); break; case "upload": HTMLFeedback.upload(instance, extra); break; case "reset": HTMLFeedback.hide(instance); HTMLFeedback.resize(instance); HTMLFeedback.clear(instance); break; case "color": instance.options.color = extra; break; } return self; } } })(jQuery);
{ "content_hash": "32657cad93a9a88ae58bfedd68f5f054", "timestamp": "", "source": "github", "line_count": 585, "max_line_length": 128, "avg_line_length": 27.46153846153846, "alnum_prop": 0.6167444755680049, "repo_name": "basilfx/HTMLFeedback", "id": "cf99be41b0f0027f13aaf64d29f2c07f0c9700ac", "size": "16680", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "jquery.htmlfeedback.js", "mode": "33188", "license": "mit", "language": [ { "name": "JavaScript", "bytes": "111653" }, { "name": "PHP", "bytes": "587" } ], "symlink_target": "" }
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- Mirrored from bvs.wikidot.com/forum/t-259883/robopart:foam-helmet by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 10 Jul 2022 03:57:17 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack --> <head> <title>Foam Helmet - Billy Vs. SNAKEMAN Wiki</title> <script type="text/javascript" src="http://d3g0gp89917ko0.cloudfront.net/v--291054f06006/common--javascript/init.combined.js"></script> <script type="text/javascript"> var URL_HOST = 'www.wikidot.com'; var URL_DOMAIN = 'wikidot.com'; var USE_SSL = true ; var URL_STATIC = 'http://d3g0gp89917ko0.cloudfront.net/v--291054f06006'; // global request information var WIKIREQUEST = {}; WIKIREQUEST.info = {}; WIKIREQUEST.info.domain = "bvs.wikidot.com"; WIKIREQUEST.info.siteId = 32011; WIKIREQUEST.info.siteUnixName = "bvs"; WIKIREQUEST.info.categoryId = 182512; WIKIREQUEST.info.themeId = 9564; WIKIREQUEST.info.requestPageName = "forum:thread"; OZONE.request.timestamp = 1657422425; OZONE.request.date = new Date(); WIKIREQUEST.info.lang = 'en'; WIKIREQUEST.info.pageUnixName = "forum:thread"; WIKIREQUEST.info.pageId = 2987325; WIKIREQUEST.info.lang = "en"; OZONE.lang = "en"; var isUAMobile = !!/Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); </script> <script type="text/javascript"> require.config({ baseUrl: URL_STATIC + '/common--javascript', paths: { 'jquery.ui': 'jquery-ui.min', 'jquery.form': 'jquery.form' } }); </script> <meta http-equiv="content-type" content="text/html;charset=UTF-8"/> <link rel="canonical" href="../../robopart_foam-helmet.html" /> <meta http-equiv="content-language" content="en"/> <script type="text/javascript" src="http://d3g0gp89917ko0.cloudfront.net/v--291054f06006/common--javascript/WIKIDOT.combined.js"></script> <style type="text/css" id="internal-style"> /* modules */ /* theme */ @import url(http://d3g0gp89917ko0.cloudfront.net/v--291054f06006/common--theme/base/css/style.css); @import url(http://bvs.wdfiles.com/local--theme/north/style.css); </style> <link rel="shortcut icon" href="../../local--favicon/favicon.gif"/> <link rel="icon" type="image/gif" href="../../local--favicon/favicon.gif"/> <link rel="apple-touch-icon" href="../../common--images/apple-touch-icon-57x57.png" /> <link rel="apple-touch-icon" sizes="72x72" href="../../common--images/apple-touch-icon-72x72.png" /> <link rel="apple-touch-icon" sizes="114x114" href="../../common--images/apple-touch-icon-114x114.png" /> <link rel="alternate" type="application/wiki" title="Edit this page" href="javascript:WIKIDOT.page.listeners.editClick()"/> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-18234656-1']); _gaq.push(['_setDomainName', 'none']); _gaq.push(['_setAllowLinker', true]); _gaq.push(['_trackPageview']); _gaq.push(['old._setAccount', 'UA-68540-5']); _gaq.push(['old._setDomainName', 'none']); _gaq.push(['old._setAllowLinker', true]); _gaq.push(['old._trackPageview']); _gaq.push(['userTracker._setAccount', 'UA-3581307-1']); _gaq.push(['userTracker._trackPageview']); </script> <script type="text/javascript"> window.google_analytics_uacct = 'UA-18234656-1'; window.google_analytics_domain_name = 'none'; </script> <link rel="manifest" href="../../onesignal/manifest.html" /> <script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" acync=""></script> <script> var OneSignal = window.OneSignal || []; OneSignal.push(function() { OneSignal.init({ appId: null, }); }); </script> <link rel="alternate" type="application/rss+xml" title="Posts in the discussion thread &quot;Foam Helmet&quot;" href="../../feed/forum/t-259883.xml"/><script type="text/javascript" src="http://d3g0gp89917ko0.cloudfront.net/v--291054f06006/common--modules/js/forum/ForumViewThreadModule.js"></script> <script type="text/javascript" src="http://d3g0gp89917ko0.cloudfront.net/v--291054f06006/common--modules/js/forum/ForumViewThreadPostsModule.js"></script> </head> <body id="html-body"> <div id="skrollr-body"> <a name="page-top"></a> <div id="container-wrap-wrap"> <div id="container-wrap"> <div id="container"> <div id="header"> <h1><a href="../../index.html"><span>Billy Vs. SNAKEMAN Wiki</span></a></h1> <h2><span>Be the Ultimate Ninja.</span></h2> <!-- google_ad_section_start(weight=ignore) --> <div id="search-top-box" class="form-search"> <form id="search-top-box-form" action="http://bvs.wikidot.com/forum/t-259883/dummy" class="input-append"> <input id="search-top-box-input" class="text empty search-query" type="text" size="15" name="query" value="Search this site" onfocus="if(YAHOO.util.Dom.hasClass(this, 'empty')){YAHOO.util.Dom.removeClass(this,'empty'); this.value='';}"/><input class="button btn" type="submit" name="search" value="Search"/> </form> </div> <div id="top-bar"> <ul> <li><a href="../../allies.html">Allies</a> <ul> <li><strong><a href="../../untabbed_allies.html">Allies Untabbed</a></strong></li> <li><a href="../../allies.html#toc7">Burger Ninja</a></li> <li><a href="../../allies.html#toc5">Reaper</a></li> <li><a href="../../allies.html#toc0">Regular</a></li> <li><a href="../../allies.html#toc8">R00t</a></li> <li><a href="../../allies.html#toc1">Season 2+</a></li> <li><a href="../../allies.html#toc2">Season 3+</a></li> <li><a href="../../allies.html#toc3">Season 4+</a></li> <li><a href="../../allies.html#toc4">The Trade</a></li> <li><a href="../../allies.html#toc6">Wasteland</a></li> <li><a href="../../allies.html#toc9">World Kaiju</a></li> <li><strong><a href="../../summons.html">Summons</a></strong></li> <li><strong><a href="../../teams.html">Teams</a></strong></li> </ul> </li> <li><a href="../../missions.html">Missions</a> <ul> <li><strong><a href="../../untabbed_missions.html">Missions Untabbed</a></strong></li> <li><strong><em><a href="../../missions.html#toc0">D-Rank</a></em></strong></li> <li><strong><em><a href="../../missions.html#toc1">C-Rank</a></em></strong></li> <li><strong><em><a href="../../missions.html#toc2">B-Rank</a></em></strong></li> <li><strong><em><a href="../../missions.html#toc3">A-Rank</a></em></strong></li> <li><strong><em><a href="../../missions.html#toc4">AA-Rank</a></em></strong></li> <li><strong><em><a href="../../missions.html#toc5">S-Rank</a></em></strong></li> <li><a href="../../missions.html#toc10">BurgerNinja</a></li> <li><a href="../../missions.html#toc14">Cave</a></li> <li><a href="../../missions.html#toc13">Jungle</a></li> <li><a href="../../missions.html#toc7">Monochrome</a></li> <li><a href="../../missions.html#toc8">Outskirts</a></li> <li><a href="../../missions.html#toc11">PizzaWitch</a></li> <li><a href="../../missions.html#toc6">Reaper</a></li> <li><a href="../../missions.html#toc9">Wasteland</a></li> <li><a href="../../missions.html#toc12">Witching Hour</a></li> <li><strong><em><a href="../../missions.html#toc14">Quests</a></em></strong></li> <li><a href="../../wota.html">Mission Lady Alley</a></li> </ul> </li> <li><a href="../../items.html">Items</a> <ul> <li><strong><a href="../../untabbed_items.html">Items Untabbed</a></strong></li> <li><a href="../../items.html#toc6">Ally Drops and Other</a></li> <li><a href="../../items.html#toc0">Permanent Items</a></li> <li><a href="../../items.html#toc1">Potions/Crafting Items</a> <ul> <li><a href="../../items.html#toc4">Crafting</a></li> <li><a href="../../items.html#toc3">Ingredients</a></li> <li><a href="../../items.html#toc2">Potions</a></li> </ul> </li> <li><a href="../../items.html#toc5">Wasteland Items</a></li> <li><a href="../../sponsored-items.html">Sponsored Items</a></li> </ul> </li> <li><a href="../../village.html">Village</a> <ul> <li><a href="../../billycon.html">BillyCon</a> <ul> <li><a href="../../billycon_billy-idol.html">Billy Idol</a></li> <li><a href="../../billycon_cosplay.html">Cosplay</a></li> <li><a href="../../billycon_dealer-s-room.html">Dealer's Room</a></li> <li><a href="../../billycon_events.html">Events</a></li> <li><a href="../../billycon_glowslinging.html">Glowslinging</a></li> <li><a href="../../billycon_rave.html">Rave</a></li> <li><a href="../../billycon_squee.html">Squee</a></li> <li><a href="../../billycon_video-game-tournament.html">Video Game Tournament</a></li> <li><a href="../../billycon_wander.html">Wander</a></li> </ul> </li> <li><a href="../../billytv.html">BillyTV</a></li> <li><a href="../../bingo-ing.html">Bingo'ing</a></li> <li><a href="../../candyween.html">Candyween</a></li> <li><a href="../../festival.html">Festival Day</a> <ul> <li><a href="../../festival_bargltron.html">Bargltron</a></li> <li><a href="../../festival_billymaze.html">BillyMaze</a></li> <li><a href="../../festival_dance-party.html">Dance Party</a></li> <li><a href="../../festival_elevensnax.html">ElevenSnax</a></li> <li><a href="../../festival_marksman.html">Marksman</a></li> <li><a href="../../festival_raffle.html">Raffle</a></li> <li><a href="../../festival_rngshack.html">RNGShack</a></li> <li><a href="../../festival_tsukiroll.html">TsukiRoll</a></li> <li><a href="../../festival_tunnel.html">Tunnel</a></li> </ul> </li> <li><a href="../../hidden-hoclaus.html">Hidden HoClaus</a></li> <li><a href="../../kaiju.html">Kaiju</a></li> <li><a href="../../marketplace.html">Marketplace</a></li> <li><a href="../../pizzawitch-garage.html">PizzaWitch Garage</a></li> <li><a href="../../robo-fighto.html">Robo Fighto</a></li> <li>R00t <ul> <li><a href="../../fields.html">Fields</a></li> <li><a href="../../keys.html">Keys</a></li> <li><a href="../../phases.html">Phases</a></li> </ul> </li> <li><a href="../../upgrade_science-facility.html#toc2">SCIENCE!</a></li> <li><a href="../../upgrades.html">Upgrades</a></li> <li><a href="../../zombjas.html">Zombjas</a></li> </ul> </li> <li><a href="../../misc_party-house.html">Party House</a> <ul> <li><a href="../../partyhouse_11dbhk-s-lottery.html">11DBHK's Lottery</a></li> <li><a href="../../partyhouse_akatsukiball.html">AkaTsukiBall</a></li> <li><a href="../../upgrade_claw-machines.html">Crane Game!</a></li> <li><a href="../../upgrade_darts-hall.html">Darts!</a></li> <li><a href="../../partyhouse_flower-wars.html">Flower Wars</a></li> <li><a href="../../upgrade_juice-bar.html">'Juice' Bar</a></li> <li><a href="../../partyhouse_mahjong.html">Mahjong</a></li> <li><a href="../../partyhouse_ninja-jackpot.html">Ninja Jackpot!</a></li> <li><a href="../../partyhouse_over-11-000.html">Over 11,000</a></li> <li><a href="../../partyhouse_pachinko.html">Pachinko</a></li> <li><a href="../../partyhouse_party-room.html">Party Room</a></li> <li><a href="../../partyhouse_pigeons.html">Pigeons</a></li> <li><a href="../../partyhouse_prize-wheel.html">Prize Wheel</a></li> <li><a href="../../partyhouse_roulette.html">Roulette</a></li> <li><a href="../../partyhouse_scratchy-tickets.html">Scratchy Tickets</a></li> <li><a href="../../partyhouse_snakeman.html">SNAKEMAN</a></li> <li><a href="../../partyhouse_superfail.html">SUPERFAIL</a></li> <li><a href="../../partyhouse_tip-line.html">Tip Line</a></li> <li><a href="../../partyhouse_the-big-board.html">The Big Board</a></li> <li><a href="../../partyhouse_the-first-loser.html">The First Loser</a></li> </ul> </li> <li><a href="../../guides.html">Guides</a> <ul> <li><a href="../../guide_billycon.html">BillyCon Guide</a></li> <li><a href="../../guide_burgerninja.html">BurgerNinja Guide</a></li> <li><a href="../../guide_candyween.html">Candyween Guide</a></li> <li><a href="../../guide_glossary.html">Glossary</a></li> <li><a href="../../guide_gs.html">Glowslinging Strategy Guide</a></li> <li><a href="../../guide_hq.html">Hero's Quest</a></li> <li><a href="../../guide_looping.html">Looping Guide</a></li> <li><a href="../../guide_monochrome.html">Monochrome Guide</a></li> <li><a href="../../overnight-bonuses.html">Overnight Bonuses</a></li> <li><a href="../../guide_pizzawitch.html">PizzaWitch Guide</a></li> <li><a href="../../tabbed_potions-crafting.html">Potions / Crafting</a> <ul> <li><a href="../../tabbed_potions-crafting.html#toc3">Crafting</a> <ul> <li><a href="../../tabbed_potions-crafting.html#toc4">Items</a></li> <li><a href="../../tabbed_potions-crafting.html#toc5">Materials</a></li> </ul> </li> <li><a href="../../tabbed_potions-crafting.html#toc0">Potion Mixing</a> <ul> <li><a href="../../tabbed_potions-crafting.html#toc2">Mixed Ingredients</a></li> <li><a href="../../tabbed_potions-crafting.html#toc1">Potions</a></li> </ul> </li> <li><a href="../../tabbed_potions-crafting.html#toc6">Reduction Laboratory</a> <ul> <li><a href="../../tabbed_potions-crafting.html#toc8">Potions and Ingredients</a></li> <li><a href="../../tabbed_potions-crafting.html#toc7">Wasteland Items</a></li> </ul> </li> </ul> </li> <li><a href="../../guide_impossible-mission.html">Impossible Mission Guide</a></li> <li><a href="../../guide_xp.html">Ranking Guide</a></li> <li><a href="../../guide_reaper.html">Reaper Guide</a></li> <li><a href="../../guide_rgg.html">Reaper's Game Guide</a></li> <li><a href="../../guide_r00t.html">R00t Guide</a></li> <li><a href="../../guide_speed-content.html">Speed Content Guide</a></li> <li><a href="../../guide_speedlooping.html">Speedlooping Guide</a></li> <li><a href="../../guide_thetrade.html">The Trade Guide</a></li> <li><a href="../../guide_wasteland.html">Wasteland Guide</a></li> </ul> </li> <li>Other <ul> <li><a href="../../arena.html">Arena</a></li> <li><a href="../../billy-club.html">Billy Club</a> <ul> <li><a href="../../boosters.html">Boosters</a></li> <li><a href="../../karma.html">Karma</a></li> </ul> </li> <li><a href="../../bloodline.html">Bloodlines</a></li> <li><a href="../../jutsu.html">Jutsu</a> <ul> <li><a href="../../jutsu.html#toc2">Bloodline Jutsu</a></li> <li><a href="../../jutsu.html#toc0">Regular Jutsu</a></li> <li><a href="../../jutsu.html#toc1">Special Jutsu</a></li> </ul> </li> <li><a href="../../mission-bonus.html">Mission Bonus</a></li> <li><a href="../../news-archive.html">News Archive</a></li> <li><a href="../../number-one.html">Number One</a></li> <li><a href="../../old-news-archive.html">Old News Archive</a></li> <li><a href="../../retail_perfect-poker.html">Perfect Poker Bosses</a></li> <li><a href="../../pets.html">Pets</a></li> <li><a href="../../retail.html">Retail</a></li> <li><a href="../../ryo.html">Ryo</a></li> <li><a href="../../spar.html">Spar With Friends</a></li> <li><a href="../../sponsored-items.html">Sponsored Items</a></li> <li><a href="../../store.html">Store</a></li> <li><a href="../../themes.html">Themes</a></li> <li><a href="../../trophies.html">Trophies</a></li> <li><a href="../../untabbed.html">Untabbed</a> <ul> <li><a href="../../untabbed_allies.html">Allies</a></li> <li><a href="../../untabbed_items.html">Items</a></li> <li><a href="../../untabbed_jutsu.html">Jutsu</a></li> <li><a href="../../untabbed_missions.html">Missions</a></li> <li><a href="../../untabbed_potions-crafting.html">Potions / Crafting</a></li> </ul> </li> <li><a href="../../world-kaiju.html">World Kaiju</a></li> </ul> </li> <li><a href="../../utilities.html">Utilities</a> <ul> <li><a href="http://www.cobaltknight.clanteam.com/awesomecalc.html">Awesome Calculator</a></li> <li><a href="http://timothydryke.byethost17.com/billy/itemchecker.php">Item Checker</a></li> <li><a href="../../utility_calculator.html">Mission Calculator</a></li> <li><a href="../../utility_r00t-calculator.html">R00t Calculator</a></li> <li><a href="../../utility_success-calculator.html">Success Calculator</a></li> <li><a href="../../templates.html">Templates</a></li> <li><a href="../../utility_chat.html">Wiki Chat Box</a></li> </ul> </li> </ul> </div> <div id="login-status"><a href="javascript:;" onclick="WIKIDOT.page.listeners.createAccount(event)" class="login-status-create-account btn">Create account</a> <span>or</span> <a href="javascript:;" onclick="WIKIDOT.page.listeners.loginClick(event)" class="login-status-sign-in btn btn-primary">Sign in</a> </div> <div id="header-extra-div-1"><span></span></div><div id="header-extra-div-2"><span></span></div><div id="header-extra-div-3"><span></span></div> </div> <div id="content-wrap"> <div id="side-bar"> <h3 ><span><a href="http://www.animecubed.com/billy/?57639" onclick="window.open(this.href, '_blank'); return false;">Play BvS Now!</a></span></h3> <ul> <li><a href="../../system_members.html">Site members</a></li> <li><a href="../../system_join.html">Wiki Membership</a></li> </ul> <hr /> <ul> <li><a href="../../forum_start.html">Forum Main</a></li> <li><a href="../../forum_recent-posts.html">Recent Posts</a></li> </ul> <hr /> <ul> <li><a href="../../system_recent-changes.html">Recent changes</a></li> <li><a href="../../system_list-all-pages.html">List all pages</a></li> <li><a href="../../system_page-tags-list.html">Page Tags</a></li> </ul> <hr /> <ul> <li><a href="../../players.html">Players</a></li> <li><a href="../../villages.html">Villages</a></li> <li><a href="../../other-resources.html">Other Resources</a></li> </ul> <hr /> <p style="text-align: center;"><span style="font-size:smaller;">Notice: Do not send bug reports based on the information on this site. If this site is not matching up with what you're experiencing in game, that is a problem with this site, not with the game.</span></p> </div> <!-- google_ad_section_end --> <div id="main-content"> <div id="action-area-top"></div> <div id="page-title"><a href="../../robopart_foam-helmet.html">Foam Helmet</a> / Discussion</h1></div> <div id="page-content"> <div class="forum-thread-box "> <div class="forum-breadcrumbs"> <a href="../start.html">Forum</a> &raquo; <a href="../c-30019/per-page-discussions.html">Hidden / Per page discussions</a> &raquo; Foam Helmet </div> <div class="description-block well"> <div class="statistics"> Started by: <span class="printuser">Wikidot</span><br/> Date: <span class="odate time_1282247691 format_%25e%20%25b%20%25Y%2C%20%25H%3A%25M%7Cagohover">19 Aug 2010 19:54</span><br/> Number of posts: 0<br/> <span class="rss-icon"><img src="http://www.wikidot.com/common--theme/base/images/feed/feed-icon-14x14.png" alt="rss icon"/></span> RSS: <a href="../../feed/forum/t-259883.xml">New posts</a> </div> This is the discussion related to the wiki page <a href="../../robopart_foam-helmet.html">Foam Helmet</a>. </div> <div class="options"> <a href="javascript:;" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.unfoldAll(event)" class="btn btn-default btn-small btn-sm">Unfold All</a> <a href="javascript:;" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.foldAll(event)" class="btn btn-default btn-small btn-sm">Fold All</a> <a href="javascript:;" id="thread-toggle-options" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.toggleThreadOptions(event)" class="btn btn-default btn-small btn-sm"><i class="icon-plus"></i> More Options</a> </div> <div id="thread-options-2" class="options" style="display: none"> <a href="javascript:;" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.editThreadBlock(event)" class="btn btn-default btn-small btn-sm">Lock Thread</a> <a href="javascript:;" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.moveThread(event)" class="btn btn-default btn-small btn-sm">Move Thread</a> </div> <div id="thread-action-area" class="action-area well" style="display: none"></div> <div id="thread-container" class="thread-container"> <div id="thread-container-posts" style="display: none"> </div> </div> <div class="new-post"> <a href="javascript:;" id="new-post-button" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.newPost(event,null)" class="btn btn-default">New Post</a> </div> <div style="display:none" id="post-options-template"> <a href="javascript:;" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.showPermalink(event,'%POST_ID%')" class="btn btn-default btn-small btn-sm">Permanent Link</a> <a href="javascript:;" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.editPost(event,'%POST_ID%')" class="btn btn-default btn-small btn-sm">Edit</a> <a href="javascript:;" onclick="WIKIDOT.modules.ForumViewThreadModule.listeners.deletePost(event,'%POST_ID%')"class="btn btn-danger btn-small btn-sm">Delete</a> </div> <div style="display:none" id="post-options-permalink-template">/forum/t-259883/foam-helmet#post-</div> </div> <script type="text/javascript"> WIKIDOT.forumThreadId = 259883; </script> </div> <div id="page-info-break"></div> <div id="page-options-container"> </div> <div id="action-area" style="display: none;"></div> </div> </div> <div id="footer" style="display: block; visibility: visible;"> <div class="options" style="display: block; visibility: visible;"> <a href="http://www.wikidot.com/doc" id="wikidot-help-button">Help</a> &nbsp;| <a href="http://www.wikidot.com/legal:terms-of-service" id="wikidot-tos-button">Terms of Service</a> &nbsp;| <a href="http://www.wikidot.com/legal:privacy-policy" id="wikidot-privacy-button">Privacy</a> &nbsp;| <a href="javascript:;" id="bug-report-button" onclick="WIKIDOT.page.listeners.pageBugReport(event)">Report a bug</a> &nbsp;| <a href="javascript:;" id="abuse-report-button" onclick="WIKIDOT.page.listeners.flagPageObjectionable(event)">Flag as objectionable</a> </div> Powered by <a href="http://www.wikidot.com/">Wikidot.com</a> </div> <div id="license-area" class="license-area"> Unless otherwise stated, the content of this page is licensed under <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 License</a> </div> <div id="extrac-div-1"><span></span></div><div id="extrac-div-2"><span></span></div><div id="extrac-div-3"><span></span></div> </div> </div> <!-- These extra divs/spans may be used as catch-alls to add extra imagery. --> <div id="extra-div-1"><span></span></div><div id="extra-div-2"><span></span></div><div id="extra-div-3"><span></span></div> <div id="extra-div-4"><span></span></div><div id="extra-div-5"><span></span></div><div id="extra-div-6"><span></span></div> </div> </div> <div id="dummy-ondomready-block" style="display: none;" ></div> <!-- Google Analytics load --> <script type="text/javascript"> (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <!-- Quantcast --> <script type="text/javascript"> _qoptions={ qacct:"p-edL3gsnUjJzw-" }; (function() { var qc = document.createElement('script'); qc.type = 'text/javascript'; qc.async = true; qc.src = ('https:' == document.location.protocol ? 'https://secure' : 'http://edge') + '.quantserve.com/quant.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(qc, s); })(); </script> <noscript> <img src="http://pixel.quantserve.com/pixel/p-edL3gsnUjJzw-.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/> </noscript> <div id="page-options-bottom-tips" style="display: none;"> <div id="edit-button-hovertip"> Click here to edit contents of this page. </div> </div> <div id="page-options-bottom-2-tips" style="display: none;"> <div id="edit-sections-button-hovertip"> Click here to toggle editing of individual sections of the page (if possible). Watch headings for an &quot;edit&quot; link when available. </div> <div id="edit-append-button-hovertip"> Append content without editing the whole page source. </div> <div id="history-button-hovertip"> Check out how this page has evolved in the past. </div> <div id="discuss-button-hovertip"> If you want to discuss contents of this page - this is the easiest way to do it. </div> <div id="files-button-hovertip"> View and manage file attachments for this page. </div> <div id="site-tools-button-hovertip"> A few useful tools to manage this Site. </div> <div id="backlinks-button-hovertip"> See pages that link to and include this page. </div> <div id="rename-move-button-hovertip"> Change the name (also URL address, possibly the category) of the page. </div> <div id="view-source-button-hovertip"> View wiki source for this page without editing. </div> <div id="parent-page-button-hovertip"> View/set parent page (used for creating breadcrumbs and structured layout). </div> <div id="abuse-report-button-hovertip"> Notify administrators if there is objectionable content in this page. </div> <div id="bug-report-button-hovertip"> Something does not work as expected? Find out what you can do. </div> <div id="wikidot-help-button-hovertip"> General Wikidot.com documentation and help section. </div> <div id="wikidot-tos-button-hovertip"> Wikidot.com Terms of Service - what you can, what you should not etc. </div> <div id="wikidot-privacy-button-hovertip"> Wikidot.com Privacy Policy. </div> </div> </body> <!-- Mirrored from bvs.wikidot.com/forum/t-259883/robopart:foam-helmet by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 10 Jul 2022 03:57:18 GMT --> </html>
{ "content_hash": "0f3ab652c2ec88f0eb53e136673d85d0", "timestamp": "", "source": "github", "line_count": 637, "max_line_length": 328, "avg_line_length": 43.968602825745684, "alnum_prop": 0.5959011710939731, "repo_name": "tn5421/tn5421.github.io", "id": "4016fa71af97cf98b6caf7fe0309860ea9e425ad", "size": "28008", "binary": false, "copies": "1", "ref": "refs/heads/main", "path": "bvs.wikidot.com/forum/t-259883/robopart_foam-helmet.html", "mode": "33188", "license": "mit", "language": [ { "name": "HTML", "bytes": "400301089" } ], "symlink_target": "" }
require 'rexml/document' module ActiveResource module Formats module AtomFormat extend self def extension "atom" end def mime_type "application/atom+xml" end def encode(hash, options={}) hash.to_xml(options) end def decode(xml) xml.gsub!( /\<(\/?)atom\:/, '<\1' ) # the "events" feeds have "atom:" in front of tags, for some reason doc = REXML::Document.new(xml) return [] if no_content?(doc) result = Hash.from_xml(from_atom_data(doc)) if is_collection?(doc) list = result['records'] next_link = REXML::XPath.first(doc, "/feed/link[@rel='next']") if next_link next_path = next_link.attribute('href').value next_page = ::ConstantContact::Base.connection.get(next_path) next_page = [next_page] if Hash === next_page list.concat(next_page) end list else result.values.first end end private def from_atom_data(doc) if is_collection?(doc) content_from_collection(doc) else content_from_single_record(doc) end end def no_content?(doc) REXML::XPath.match(doc,'//content').size == 0 end def is_collection?(doc) REXML::XPath.match(doc,'//content').size > 1 end def content_from_single_record(doc) str = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" REXML::XPath.each(doc, '//content') do |e| content = e.children[1] str << content.to_s end str end def content_from_collection(doc) str = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><records type=\"array\">" REXML::XPath.each(doc, '//content') do |e| content = e.children[1] str << content.to_s end str << "</records>" str end def content_from_member(doc) str = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" REXML::XPath.each(doc, '//content') do |e| content = e.children[1].children str << content.to_s end str end end end end
{ "content_hash": "fe4ae8ae7431834a8c0ea018c2893e36", "timestamp": "", "source": "github", "line_count": 90, "max_line_length": 111, "avg_line_length": 25.233333333333334, "alnum_prop": 0.5134302069572876, "repo_name": "ekadoo/constant_contact", "id": "48cf46b210bb0230772814886ea37c5a9a499d8e", "size": "2271", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "lib/constant_contact/formats/atom_format.rb", "mode": "33188", "license": "mit", "language": [ { "name": "Ruby", "bytes": "39693" } ], "symlink_target": "" }
typedef u_int SOCKET; #ifdef WIN32 #define MSG_NOSIGNAL 0 #define MSG_DONTWAIT 0 typedef int socklen_t; #else #include "errno.h" #define WSAGetLastError() errno #define WSAEINVAL EINVAL #define WSAEALREADY EALREADY #define WSAEWOULDBLOCK EWOULDBLOCK #define WSAEMSGSIZE EMSGSIZE #define WSAEINTR EINTR #define WSAEINPROGRESS EINPROGRESS #define WSAEADDRINUSE EADDRINUSE #define WSAENOTSOCK EBADF #define INVALID_SOCKET (SOCKET)(~0) #define SOCKET_ERROR -1 #endif inline int myclosesocket(SOCKET& hSocket) { if (hSocket == INVALID_SOCKET) return WSAENOTSOCK; #ifdef WIN32 int ret = closesocket(hSocket); #else int ret = close(hSocket); #endif hSocket = INVALID_SOCKET; return ret; } #define closesocket(s) myclosesocket(s) #endif
{ "content_hash": "a3ab3a8ef58e54dc297bcb737d327f71", "timestamp": "", "source": "github", "line_count": 36, "max_line_length": 44, "avg_line_length": 23.72222222222222, "alnum_prop": 0.6756440281030445, "repo_name": "jhbruhn/pedacoin", "id": "287a17937cc20d31b4b7682b2b02a097916b8f8c", "size": "1531", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/compat.h", "mode": "33188", "license": "mit", "language": [ { "name": "C", "bytes": "78257" }, { "name": "C++", "bytes": "1371717" }, { "name": "Objective-C++", "bytes": "2463" }, { "name": "Python", "bytes": "47538" }, { "name": "Shell", "bytes": "2616" }, { "name": "TypeScript", "bytes": "3810627" } ], "symlink_target": "" }
namespace Core { public interface IANPREngineSettings { int MinPlateHeight { get; set; } int MaxPlateHeight { get; set; } int MinPlateWidth { get; set; } int MaxPlateWidth { get; set; } } }
{ "content_hash": "fae3489af4ad93988ab535dfbd1cc97c", "timestamp": "", "source": "github", "line_count": 10, "max_line_length": 40, "avg_line_length": 23.7, "alnum_prop": 0.5780590717299579, "repo_name": "Phontan/ANPR", "id": "449bc7969e423006c7ba87935a552df876184bb2", "size": "239", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "ANPR/Core/IANPREngineSettings.cs", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C#", "bytes": "20449" } ], "symlink_target": "" }
var fs = require('fs'); var fse = require('fs-extra'); var gu = require(__dirname+'/gu.js'); var userService = require(__dirname+'/user.js'); var $http = require('request-promise'); var recursive = require('recursive-readdir'); var git = require('gitty'); var wawPages = { ng: 'git@github.com:WebArtWork/wawAngular.git' } if (fs.existsSync(__dirname+'/user.json')) { var user = fse.readJsonSync(__dirname+'/user.json', {throws: false}); }else var user = {}; /* wawify create */ module.exports.create = function(page){ var dest = process.cwd() + '/' + page.replace(/[^\w\s]/gi, '').toLowerCase(); if(fs.existsSync(dest)) gu.close('This page already exists'); if (user.devToken) { //gu.log('You have logged in with username: ' + user.username); createFromDefault(page, dest); } else createFromDefault(page, dest); }; var createFromDefault = function(page, dest){ fse.ensureDir(page); var clientRepo = git(page); clientRepo.init(function() { clientRepo.addRemote('origin', wawPages.ng, function(err) { clientRepo.checkout('master', ['-b'], function(err) { clientRepo.pull('origin', 'master', function() { fse.removeSync(page + '/.git'); fse.removeSync(page + '/.gitignore'); fse.removeSync(page + '/server.js'); fse.removeSync(page + '/config.json'); fse.copySync(__dirname+'/theme.json', page+'/theme.json'); writeFile(page+'/theme.json', [{ from: 'PAGENAME', to: page.replace(/[^\w\s]/gi, '').toLowerCase() }], page+'/theme.json'); gu.close("Theme has been successfully created."); }); }); }); }); } /* wawify fetch */ module.exports.fetch = function(){ checkThemeAvailability(false, function(answer){ if (answer.notUser) userService.off(); else if (answer.update) fetch(answer.files, 0); else if (answer.themeDoNotExists) { gu.close('Theme do not exists.'); } }); }; var fetch = function(files, i){ if(files.length==0) return; var path = process.cwd() + files[i].url; if (!fs.existsSync(path)) { files[i].sync = true; } else { var fileInfo = fs.statSync(path); var timediff = new Date(fileInfo.mtime).getTime() - new Date(files[i].mtime).getTime(); if (timediff > 1000 || timediff < -1000 || fileInfo.size != files[i].size) files[i].sync = true; } if(files[i].sync){ var theme = fse.readJsonSync(process.cwd()+'/theme.json', {throws: false}); $http({ method: 'POST', uri: 'http://localhost:3265/api/theme/file/fetch/'+theme.name+'/'+user.devToken+'/'+user.username+files[i].url }).then(function(resp){ fse.outputFile(path, resp, function(err) { fs.utimesSync(path, fileInfo.atime, new Date(files[i].mtime)); if(++i<files.length) fetch(files, i); }); }); }else if(++i<files.length) fetch(files, i); } /* wawify update */ module.exports.update = function(){ checkThemeAvailability(true, function(answer){ if (answer.notUser) userService.off(); else if (answer.update) update(answer.files, 0); else if (answer.somethingWentWrong) { gu.close('Something went wrong.'); } else if (answer.themeCreated){ recursive(process.cwd(), function(err, files) { var filesInfo = []; for (var i = 0; i < files.length; i++) { var fileInfo = fs.statSync(files[i]); filesInfo.push({ base: files[i], url: files[i].replace(process.cwd(), ''), mtime: fileInfo.mtime, size: fileInfo.size }); } update(filesInfo, 0); }); } }); }; var update = function(files, i){ if(files.length==0) return; var theme = fse.readJsonSync(process.cwd()+'/theme.json', {throws: false}); $http({ method: 'POST', uri: 'http://localhost:3265/api/theme/file/update/'+theme.name+'/'+user.devToken+'/'+user.username+'/'+files[i].mtime+files[i].url, formData: { file: fs.createReadStream(files[i].base) } }).then(function(answer){ if(++i<files.length) update(files, i); }); } /* wawify support */ var checkThemeAvailability = function(create, callback){ if (user.devToken) { var theme = fse.readJsonSync(process.cwd()+'/theme.json', {throws: false}); if(!theme.name) gu.close('Please give your theme a name.'); recursive(process.cwd(), function(err, files) { var filesInfo = []; for (var i = 0; i < files.length; i++) { var fileInfo = fs.statSync(files[i]); filesInfo.push({ base: files[i], url: files[i].replace(process.cwd(), ''), mtime: fileInfo.mtime, size: fileInfo.size }); } $http({ uri: 'http://localhost:3265/api/theme/check', method: 'POST', body: { username: user.username, devToken: user.devToken, create: create, files: filesInfo, name: theme.name }, json: true }).then(callback); }); } else { gu.close('You are not authenticated.'); } } var writeFile = function(src, renames, dest, callback) { var data = fs.readFileSync(src, 'utf8'); for (var i = 0; i < renames.length; i++) { data=data.replace(new RegExp(renames[i].from, 'g'), renames[i].to); } fs.writeFileSync(dest, data); if (typeof callback == 'function') callback(); } /* wawify end of */
{ "content_hash": "e4f085a932ba7cd5c42b5fb72fb8e5c4", "timestamp": "", "source": "github", "line_count": 170, "max_line_length": 134, "avg_line_length": 30.641176470588235, "alnum_prop": 0.6152812440007679, "repo_name": "WebArtWork/wawify", "id": "17829f1763a775dbbe6ab9d84ecef2f76aa0623b", "size": "5209", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "build/index.js", "mode": "33188", "license": "mit", "language": [ { "name": "JavaScript", "bytes": "17090" } ], "symlink_target": "" }
'use strict'; import assert from 'power-assert'; import matchRoutes from '../../lib/matchRoutes'; import React from 'react'; import {Location, NotFound} from '../../'; describe('matchRoutes', function() { var routes = [ <Location path='(/)' handler={<div name="root" />} />, <Location path='/cat/:id' handler={<div name="cat" />} />, <Location path='/mod/*' handler={<div name="mod" />} />, <Location path={/\/regex\/([a-zA-Z]*)$/} handler={<div name="regex" />} />, <Location path={/\/(.*?)\/(\d)\/([a-zA-Z]*)$/} handler={<div name="regexMatch" />} urlPatternOptions={['name', 'num', 'text']} />, <NotFound handler={<div name="notfound" />} /> ]; it('matches ""', function() { var match = matchRoutes(routes, ''); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'root'); assert.deepEqual(match.match, {}); assert.strictEqual(match.path, ''); assert.strictEqual(match.matchedPath, ''); assert.strictEqual(match.unmatchedPath, null); }); it('matches /', function() { var match = matchRoutes(routes, '/'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'root'); assert.deepEqual(match.match, {}); assert.strictEqual(match.path, '/'); assert.strictEqual(match.matchedPath, '/'); assert.strictEqual(match.unmatchedPath, null); }); it('matches /cat/:id', function() { var match = matchRoutes(routes, '/cat/hello'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'cat'); assert.deepEqual(match.match, {id: 'hello'}); assert.strictEqual(match.path, '/cat/hello'); assert.strictEqual(match.matchedPath, '/cat/hello'); assert.strictEqual(match.unmatchedPath, null); }); it('fails to match /cat/:id with periods in param', function() { var match = matchRoutes(routes, '/cat/hello.with.periods'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'notfound'); assert.deepEqual(match.match, null); assert.strictEqual(match.path, '/cat/hello.with.periods'); assert.strictEqual(match.matchedPath, '/cat/hello.with.periods'); assert.strictEqual(match.unmatchedPath, null); }); it('matches /cat/:id with a custom url-pattern options and periods in param', function() { var match = matchRoutes(routes, '/cat/hello.with.periods', null, { segmentValueCharset: 'a-zA-Z0-9_\\- %\\.' }); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'cat'); assert.deepEqual(match.match, {id: 'hello.with.periods'}); assert.strictEqual(match.path, '/cat/hello.with.periods'); assert.strictEqual(match.matchedPath, '/cat/hello.with.periods'); assert.strictEqual(match.unmatchedPath, null); }); it('matches a very custom url-pattern compiler config', function() { var route = <Location path="[http[s]!://][$sub_domain.]$domain.$toplevel-domain[/?]" handler={<div name="parseDomain" />} />; // Lifted from url-pattern docs var urlPatternOptions = { escapeChar: '!', segmentNameStartChar: '$', segmentNameCharset: 'a-zA-Z0-9_-', segmentValueCharset: 'a-zA-Z0-9', optionalSegmentStartChar: '[', optionalSegmentEndChar: ']', wildcardChar: '?' }; var match = matchRoutes([route], 'https://www.github.com/strml/react-router-component', null, urlPatternOptions); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'parseDomain'); assert.deepEqual(match.match, {sub_domain: 'www', domain: 'github', 'toplevel-domain': 'com', _: ['strml/react-router-component']}); assert.strictEqual(match.path, 'https://www.github.com/strml/react-router-component'); assert.strictEqual(match.matchedPath, 'https://www.github.com/'); assert.strictEqual(match.unmatchedPath, 'strml/react-router-component'); }); it('matches /mod/wow/here', function() { var match = matchRoutes(routes, '/mod/wow/here'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'mod'); assert.deepEqual(match.match, {_: ['wow/here']}); assert.strictEqual(match.path, '/mod/wow/here'); assert.strictEqual(match.matchedPath, '/mod/'); assert.strictEqual(match.unmatchedPath, 'wow/here'); }); it('matches /regex/text', function() { var match = matchRoutes(routes, '/regex/text'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'regex'); assert.deepEqual(match.match, {_: ['text']}); assert.strictEqual(match.path, '/regex/text'); assert.strictEqual(match.matchedPath, '/regex/'); assert.strictEqual(match.unmatchedPath, 'text'); }); it('does not match /regex/1text', function() { var match = matchRoutes(routes, '/regex/1text'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'notfound'); assert.deepEqual(match.match, null); assert.strictEqual(match.path, '/regex/1text'); assert.strictEqual(match.matchedPath, '/regex/1text'); assert.strictEqual(match.unmatchedPath, null); }); it('matches /regexMatch/2/foobar', function() { var match = matchRoutes(routes, '/regexMatch/2/foobar'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'regexMatch'); assert.deepEqual(match.match, {name: 'regexMatch', num: '2', text: 'foobar'}); assert.strictEqual(match.path, '/regexMatch/2/foobar'); assert.strictEqual(match.matchedPath, '/regexMatch/2/foobar'); assert.strictEqual(match.unmatchedPath, null); }); it('matches query strings', function() { var match = matchRoutes(routes, '/cat/hello?foo=bar&baz=biff'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'cat'); assert.deepEqual(match.match, {id: 'hello'}); assert.strictEqual(match.path, '/cat/hello'); assert.strictEqual(match.matchedPath, '/cat/hello'); assert.strictEqual(match.unmatchedPath, null); assert.deepEqual(match.query, {foo : 'bar', baz: 'biff'}); }); it('handles not found', function() { var match = matchRoutes(routes, '/hm'); assert(match.route); assert.strictEqual(match.route.props.handler.props.name, 'notfound'); assert.deepEqual(match.match, null); assert.strictEqual(match.path, '/hm'); assert.strictEqual(match.matchedPath, '/hm'); assert.strictEqual(match.unmatchedPath, null); }); });
{ "content_hash": "8419995c4104382beb756b19c5ac397a", "timestamp": "", "source": "github", "line_count": 156, "max_line_length": 117, "avg_line_length": 42.17307692307692, "alnum_prop": 0.6572427420580635, "repo_name": "jsg2021/react-router-component", "id": "40f5d7650fa4db7b4e8043853a888ed435c41209", "size": "6579", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "tests/unit/matchRoutes.js", "mode": "33188", "license": "mit", "language": [ { "name": "JavaScript", "bytes": "95204" }, { "name": "Makefile", "bytes": "1616" } ], "symlink_target": "" }
ACCEPTED #### According to Index Fungorum #### Published in Annls mycol. 15(5): 371 (1917) #### Original name Aulographum anaxaeum Sacc. & D. Sacc. ### Remarks null
{ "content_hash": "cba2e1156c21279a6542b012e1ffc78a", "timestamp": "", "source": "github", "line_count": 13, "max_line_length": 37, "avg_line_length": 12.923076923076923, "alnum_prop": 0.6785714285714286, "repo_name": "mdoering/backbone", "id": "3e32937de978af776990856e6bcffca14a05427f", "size": "236", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "life/Fungi/Ascomycota/Dothideomycetes/Hysteriales/Hysteriaceae/Hysterium/Hysterium anaxaeum/README.md", "mode": "33188", "license": "apache-2.0", "language": [], "symlink_target": "" }
<?php class Result_model extends CI_Model{ protected $table = 'results'; protected $primaryKey = 'id'; function __construct() { parent::__construct(); } public function select_all_data() { $query = $this->db->order_by("timestamp","desc")->get( $this->table ); return $query->result(); } public function select_data($id) { $query = $this->db->get_where($this->table, [ $this->primaryKey => $id ]); return $query->row(); } public function insert_data($data) { $this->db->insert($this->table, $data); return $this->db->insert_id(); // 回傳 insert 進去的 PrimaryKey } public function update_data($data) { $this->db->where([ $this->primaryKey => $data['id'] ]); $this->db->update($this->table, $data); return $this->db->affected_rows(); // 回傳影響幾筆 row } public function delete_data($id) { $this->db->delete($this->table, [ $this->primaryKey => $id ]); return $this->db->affected_rows(); // 回傳影響幾筆 row } }
{ "content_hash": "b0fbb489696f558b4584e8456eb14a18", "timestamp": "", "source": "github", "line_count": 48, "max_line_length": 72, "avg_line_length": 20.0625, "alnum_prop": 0.6074766355140186, "repo_name": "louiselin/codeigniter", "id": "86f5804aaab93d4feb2cf2299276d5721b118a26", "size": "997", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "application/models/Result_model.php", "mode": "33261", "license": "mit", "language": [ { "name": "CSS", "bytes": "12194" }, { "name": "HTML", "bytes": "5373087" }, { "name": "JavaScript", "bytes": "255348" }, { "name": "PHP", "bytes": "1916247" } ], "symlink_target": "" }
@interface PodsDummy_Pods_PSEasyAutolayouts_Tests_PSEasyAutolayouts : NSObject @end @implementation PodsDummy_Pods_PSEasyAutolayouts_Tests_PSEasyAutolayouts @end
{ "content_hash": "f3038d7eba82ecb22f6f7fb1c77f52e5", "timestamp": "", "source": "github", "line_count": 4, "max_line_length": 78, "avg_line_length": 40.5, "alnum_prop": 0.8703703703703703, "repo_name": "dahiri-farid/PSEasyAutolayouts", "id": "e93f6883e55823f589b698bfa61c31d128cf2543", "size": "196", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Example/Pods/Target Support Files/Pods-PSEasyAutolayouts_Tests-PSEasyAutolayouts/Pods-PSEasyAutolayouts_Tests-PSEasyAutolayouts-dummy.m", "mode": "33188", "license": "mit", "language": [ { "name": "C", "bytes": "910" }, { "name": "Objective-C", "bytes": "16124" }, { "name": "Ruby", "bytes": "1551" }, { "name": "Shell", "bytes": "13654" } ], "symlink_target": "" }
<?php namespace Application\Entity; use Doctrine\ORM\Mapping as ORM; /** * NmtFinPostingPeriod * * @ORM\Table(name="nmt_fin_posting_period", uniqueConstraints={@ORM\UniqueConstraint(name="posting_from_date_UNIQUE", columns={"posting_from_date"}), @ORM\UniqueConstraint(name="posting_to_date_UNIQUE", columns={"posting_to_date"})}, indexes={@ORM\Index(name="nmt_fin_posting_period_FK1_idx", columns={"created_by"}), @ORM\Index(name="nmt_fin_posting_period_FK2_idx", columns={"last_change_by"}), @ORM\Index(name="nmt_fin_posting_period_IDX1", columns={"posting_from_date"}), @ORM\Index(name="nmt_fin_posting_period_IDX2", columns={"posting_to_date"}), @ORM\Index(name="nmt_fin_posting_period_FK3_idx", columns={"company_id"})}) * @ORM\Entity * @ORM\Entity(repositoryClass="Application\Repository\NmtFinPostingPeriodRepository") */ class NmtFinPostingPeriod { /** * * @var integer * * @ORM\Column(name="id", type="integer", nullable=false) * @ORM\Id * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * * @var string * * @ORM\Column(name="token", type="string", length=45, nullable=true) */ private $token; /** * * @var string * * @ORM\Column(name="period_code", type="string", length=20, nullable=false) */ private $periodCode; /** * * @var string * * @ORM\Column(name="period_name", type="string", length=20, nullable=false) */ private $periodName; /** * * @var \DateTime * * @ORM\Column(name="posting_from_date", type="datetime", nullable=true) */ private $postingFromDate; /** * * @var \DateTime * * @ORM\Column(name="posting_to_date", type="datetime", nullable=true) */ private $postingToDate; /** * * @var string * * @ORM\Column(name="period_status", type="string", nullable=false) */ private $periodStatus; /** * * @var \DateTime * * @ORM\Column(name="created_on", type="datetime", nullable=true) */ private $createdOn; /** * * @var \DateTime * * @ORM\Column(name="last_change_on", type="datetime", nullable=true) */ private $lastChangeOn; /** * * @var integer * * @ORM\Column(name="plan_working_days", type="integer", nullable=true) */ private $planWorkingDays; /** * * @var integer * * @ORM\Column(name="actual_workding_days", type="integer", nullable=true) */ private $actualWorkdingDays; /** * * @var integer * * @ORM\Column(name="cooperate_leave", type="integer", nullable=true) */ private $cooperateLeave; /** * * @var integer * * @ORM\Column(name="national_holidays", type="integer", nullable=true) */ private $nationalHolidays; /** * * @var string * * @ORM\Column(name="remarks", type="string", length=200, nullable=true) */ private $remarks; /** * * @var \Application\Entity\MlaUsers * * @ORM\ManyToOne(targetEntity="Application\Entity\MlaUsers") * @ORM\JoinColumns({ * @ORM\JoinColumn(name="created_by", referencedColumnName="id") * }) */ private $createdBy; /** * * @var \Application\Entity\MlaUsers * * @ORM\ManyToOne(targetEntity="Application\Entity\MlaUsers") * @ORM\JoinColumns({ * @ORM\JoinColumn(name="last_change_by", referencedColumnName="id") * }) */ private $lastChangeBy; /** * * @var \Application\Entity\NmtApplicationCompany * * @ORM\ManyToOne(targetEntity="Application\Entity\NmtApplicationCompany") * @ORM\JoinColumns({ * @ORM\JoinColumn(name="company_id", referencedColumnName="id") * }) */ private $company; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set token * * @param string $token * * @return NmtFinPostingPeriod */ public function setToken($token) { $this->token = $token; return $this; } /** * Get token * * @return string */ public function getToken() { return $this->token; } /** * Set periodCode * * @param string $periodCode * * @return NmtFinPostingPeriod */ public function setPeriodCode($periodCode) { $this->periodCode = $periodCode; return $this; } /** * Get periodCode * * @return string */ public function getPeriodCode() { return $this->periodCode; } /** * Set periodName * * @param string $periodName * * @return NmtFinPostingPeriod */ public function setPeriodName($periodName) { $this->periodName = $periodName; return $this; } /** * Get periodName * * @return string */ public function getPeriodName() { return $this->periodName; } /** * Set postingFromDate * * @param \DateTime $postingFromDate * * @return NmtFinPostingPeriod */ public function setPostingFromDate($postingFromDate) { $this->postingFromDate = $postingFromDate; return $this; } /** * Get postingFromDate * * @return \DateTime */ public function getPostingFromDate() { return $this->postingFromDate; } /** * Set postingToDate * * @param \DateTime $postingToDate * * @return NmtFinPostingPeriod */ public function setPostingToDate($postingToDate) { $this->postingToDate = $postingToDate; return $this; } /** * Get postingToDate * * @return \DateTime */ public function getPostingToDate() { return $this->postingToDate; } /** * Set periodStatus * * @param string $periodStatus * * @return NmtFinPostingPeriod */ public function setPeriodStatus($periodStatus) { $this->periodStatus = $periodStatus; return $this; } /** * Get periodStatus * * @return string */ public function getPeriodStatus() { return $this->periodStatus; } /** * Set createdOn * * @param \DateTime $createdOn * * @return NmtFinPostingPeriod */ public function setCreatedOn($createdOn) { $this->createdOn = $createdOn; return $this; } /** * Get createdOn * * @return \DateTime */ public function getCreatedOn() { return $this->createdOn; } /** * Set lastChangeOn * * @param \DateTime $lastChangeOn * * @return NmtFinPostingPeriod */ public function setLastChangeOn($lastChangeOn) { $this->lastChangeOn = $lastChangeOn; return $this; } /** * Get lastChangeOn * * @return \DateTime */ public function getLastChangeOn() { return $this->lastChangeOn; } /** * Set planWorkingDays * * @param integer $planWorkingDays * * @return NmtFinPostingPeriod */ public function setPlanWorkingDays($planWorkingDays) { $this->planWorkingDays = $planWorkingDays; return $this; } /** * Get planWorkingDays * * @return integer */ public function getPlanWorkingDays() { return $this->planWorkingDays; } /** * Set actualWorkdingDays * * @param integer $actualWorkdingDays * * @return NmtFinPostingPeriod */ public function setActualWorkdingDays($actualWorkdingDays) { $this->actualWorkdingDays = $actualWorkdingDays; return $this; } /** * Get actualWorkdingDays * * @return integer */ public function getActualWorkdingDays() { return $this->actualWorkdingDays; } /** * Set cooperateLeave * * @param integer $cooperateLeave * * @return NmtFinPostingPeriod */ public function setCooperateLeave($cooperateLeave) { $this->cooperateLeave = $cooperateLeave; return $this; } /** * Get cooperateLeave * * @return integer */ public function getCooperateLeave() { return $this->cooperateLeave; } /** * Set nationalHolidays * * @param integer $nationalHolidays * * @return NmtFinPostingPeriod */ public function setNationalHolidays($nationalHolidays) { $this->nationalHolidays = $nationalHolidays; return $this; } /** * Get nationalHolidays * * @return integer */ public function getNationalHolidays() { return $this->nationalHolidays; } /** * Set remarks * * @param string $remarks * * @return NmtFinPostingPeriod */ public function setRemarks($remarks) { $this->remarks = $remarks; return $this; } /** * Get remarks * * @return string */ public function getRemarks() { return $this->remarks; } /** * Set createdBy * * @param \Application\Entity\MlaUsers $createdBy * * @return NmtFinPostingPeriod */ public function setCreatedBy(\Application\Entity\MlaUsers $createdBy = null) { $this->createdBy = $createdBy; return $this; } /** * Get createdBy * * @return \Application\Entity\MlaUsers */ public function getCreatedBy() { return $this->createdBy; } /** * Set lastChangeBy * * @param \Application\Entity\MlaUsers $lastChangeBy * * @return NmtFinPostingPeriod */ public function setLastChangeBy(\Application\Entity\MlaUsers $lastChangeBy = null) { $this->lastChangeBy = $lastChangeBy; return $this; } /** * Get lastChangeBy * * @return \Application\Entity\MlaUsers */ public function getLastChangeBy() { return $this->lastChangeBy; } /** * Set company * * @param \Application\Entity\NmtApplicationCompany $company * * @return NmtFinPostingPeriod */ public function setCompany(\Application\Entity\NmtApplicationCompany $company = null) { $this->company = $company; return $this; } /** * Get company * * @return \Application\Entity\NmtApplicationCompany */ public function getCompany() { return $this->company; } }
{ "content_hash": "6a85e17b87758993b62bf75f0bed026a", "timestamp": "", "source": "github", "line_count": 556, "max_line_length": 629, "avg_line_length": 20.526978417266186, "alnum_prop": 0.5279067729781828, "repo_name": "ngmautri/nhungttk", "id": "39e9821f65f0a82efad93a3bc86b14cb7fa52bb6", "size": "11413", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "module/Application/src/Application/Entity/NmtFinPostingPeriod.php", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "363" }, { "name": "CSS", "bytes": "132055" }, { "name": "HTML", "bytes": "9152608" }, { "name": "Hack", "bytes": "15061" }, { "name": "JavaScript", "bytes": "1259151" }, { "name": "Less", "bytes": "78481" }, { "name": "PHP", "bytes": "18771001" }, { "name": "SCSS", "bytes": "79489" } ], "symlink_target": "" }
/*! * Start Bootstrap - Freelancer Bootstrap Theme (http://startbootstrap.com) * Code licensed under the Apache License v2.0. * For details, see http://www.apache.org/licenses/LICENSE-2.0. */ body { overflow-x: hidden; } p { font-size: 20px; } p.small { font-size: 16px; } a, a:hover, a:focus, a:active, a.active { outline: 0; color: #18bc9c; } h1, h2, h3, h4, h5, h6 { text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; } hr.star-light, hr.star-primary { margin: 25px auto 30px; padding: 0; max-width: 250px; border: 0; border-top: solid 5px; text-align: center; } hr.star-light:after, hr.star-primary:after { content: "\f005"; display: inline-block; position: relative; top: -.8em; padding: 0 .25em; font-family: FontAwesome; font-size: 2em; } hr.star-light { border-color: #fff; } hr.star-light:after { color: #fff; background-color: #18bc9c; } hr.star-primary { border-color: #2c3e50; } hr.star-primary:after { color: #2c3e50; background-color: #fff; } .img-centered { margin: 0 auto; } header { text-align: center; color: #fff; background: #18bc9c; } header .container { padding-top: 100px; padding-bottom: 50px; } header img { display: block; margin: 0 auto 20px; } header .intro-text .name { display: block; text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 2em; font-weight: 700; } header .intro-text .skills { font-size: 1.25em; font-weight: 300; color: white; } @media(min-width:768px) { header .container { padding-top: 200px; padding-bottom: 100px; } header .intro-text .name { font-size: 4.75em; } header .intro-text .skills { font-size: 1.75em; color: white; font-weight: 300; } } @media(min-width:768px) { .navbar-fixed-top { padding: 25px 0; -webkit-transition: padding .3s; -moz-transition: padding .3s; transition: padding .3s; } .navbar-fixed-top .navbar-brand { font-size: 2em; -webkit-transition: all .3s; -moz-transition: all .3s; transition: all .3s; } .navbar-fixed-top.navbar-shrink { padding: 10px 0; } .navbar-fixed-top.navbar-shrink .navbar-brand { font-size: 1.5em; } } .navbar { text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; } .navbar a:focus { outline: 0; } .navbar .navbar-nav { letter-spacing: 1px; } .navbar .navbar-nav li a:focus { outline: 0; } .navbar-default, .navbar-inverse { border: 0; } section { padding: 100px 0; } section h2 { margin: 0; font-size: 3em; } section.success { color: #fff; background: #18bc9c; } section.success a, section.success a:hover, section.success a:focus, section.success a:active, section.success a.active { outline: 0; color: #2c3e50; } @media(max-width:767px) { section { padding: 75px 0; } section.first { padding-top: 75px; } } #portfolio .portfolio-item { right: 0; margin: 0 0 15px; } #portfolio .portfolio-item .portfolio-link { display: block; position: relative; margin: 0 auto; max-width: 400px; } #portfolio .portfolio-item .portfolio-link .caption { position: absolute; width: 100%; height: 100%; opacity: 0; background: rgba(24,188,156,.9); -webkit-transition: all ease .5s; -moz-transition: all ease .5s; transition: all ease .5s; } #portfolio .portfolio-item .portfolio-link .caption:hover { opacity: 1; } #portfolio .portfolio-item .portfolio-link .caption .caption-content { position: absolute; top: 50%; width: 100%; height: 20px; margin-top: -12px; text-align: center; font-size: 20px; color: #fff; } #portfolio .portfolio-item .portfolio-link .caption .caption-content i { margin-top: -12px; } #portfolio .portfolio-item .portfolio-link .caption .caption-content h3, #portfolio .portfolio-item .portfolio-link .caption .caption-content h4 { margin: 0; } #portfolio * { z-index: 2; } @media(min-width:767px) { #portfolio .portfolio-item { margin: 0 0 30px; } } .btn-outline { margin-top: 15px; border: solid 2px #fff; font-size: 20px; color: #fff; background: 0 0; transition: all .3s ease-in-out; } .btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active { border: solid 2px #fff; color: #18bc9c; background: #fff; } .floating-label-form-group { position: relative; margin-bottom: 0; padding-bottom: .5em; border-bottom: 1px solid #eee; } .floating-label-form-group input, .floating-label-form-group textarea { z-index: 1; position: relative; padding-right: 0; padding-left: 0; border: 0; border-radius: 0; font-size: 1.5em; background: 0 0; box-shadow: none!important; resize: none; } .floating-label-form-group label { display: block; z-index: 0; position: relative; top: 2em; margin: 0; font-size: .85em; line-height: 1.764705882em; vertical-align: middle; vertical-align: baseline; opacity: 0; -webkit-transition: top .3s ease,opacity .3s ease; -moz-transition: top .3s ease,opacity .3s ease; -ms-transition: top .3s ease,opacity .3s ease; transition: top .3s ease,opacity .3s ease; } .floating-label-form-group::not(:first-child) { padding-left: 14px; border-left: 1px solid #eee; } .floating-label-form-group-with-value label { top: 0; opacity: 1; } .floating-label-form-group-with-focus label { color: #18bc9c; } form .row:first-child .floating-label-form-group { border-top: 1px solid #eee; } footer { color: #fff; } footer h3 { margin-bottom: 30px; } footer .footer-above { padding-top: 50px; background-color: #2c3e50; } footer .footer-col { margin-bottom: 50px; } footer .footer-below { padding: 25px 0; background-color: #233140; } .btn-social { display: inline-block; width: 50px; height: 50px; border: 2px solid #fff; border-radius: 100%; text-align: center; font-size: 20px; line-height: 45px; } .btn:focus, .btn:active, .btn.active { outline: 0; } .scroll-top { z-index: 1049; position: fixed; right: 2%; bottom: 2%; width: 50px; height: 50px; } .scroll-top .btn { width: 50px; height: 50px; border-radius: 100%; font-size: 20px; line-height: 28px; } .scroll-top .btn:focus { outline: 0; } .portfolio-modal .modal-content { padding: 100px 0; min-height: 100%; border: 0; border-radius: 0; text-align: center; background-clip: border-box; -webkit-box-shadow: none; box-shadow: none; } .portfolio-modal .modal-content h2 { margin: 0; font-size: 3em; } .portfolio-modal .modal-content img { margin-bottom: 30px; } .portfolio-modal .modal-content .item-details { margin: 30px 0; } .portfolio-modal .close-modal { position: absolute; top: 25px; right: 25px; width: 75px; height: 75px; background-color: transparent; cursor: pointer; } .portfolio-modal .close-modal:hover { opacity: .3; } .portfolio-modal .close-modal .lr { z-index: 1051; width: 1px; height: 75px; margin-left: 35px; background-color: #2c3e50; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .portfolio-modal .close-modal .lr .rl { z-index: 1052; width: 1px; height: 75px; background-color: #2c3e50; -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .portfolio-modal .modal-backdrop { display: none; opacity: 0; } img.img-responsive.henimg { width: 98%; }
{ "content_hash": "8e3250b09508d81ef45b6f9788b5acb1", "timestamp": "", "source": "github", "line_count": 466, "max_line_length": 75, "avg_line_length": 17.379828326180256, "alnum_prop": 0.6195826645264848, "repo_name": "dvanlunen/dvanlunen.github.io", "id": "53420867b021eb85fea6a9929a7533400a8ee93e", "size": "8099", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "css/freelancer.css", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "37408" }, { "name": "HTML", "bytes": "70946" }, { "name": "JavaScript", "bytes": "68293" }, { "name": "PHP", "bytes": "50825" } ], "symlink_target": "" }
import json import logging import threading import uuid from compat import JsonResponse from django.contrib.auth import authenticate, login from django.core.context_processors import csrf from django.http import HttpResponse from django.shortcuts import render_to_response from django.template import RequestContext import django.utils.timezone as timezone from django.contrib.auth.decorators import login_required from django.views.decorators.csrf import csrf_exempt from django.views.generic import TemplateView from ufs_local_obj import UfsUrlObj, UfsLocalObjSaver from tagging.models import Tag from djangoautoconf.django_utils import retrieve_param from djangoautoconf.req_with_auth import RequestWithAuth import obj_tools from models import UfsObj from models import Description from view_utils import get_ufs_obj_from_ufs_url def is_barcode(url): if obj_tools.is_ufs_url(url): protocol = obj_tools.get_protocol(url) if protocol in ["bar"]: return True return False def get_or_create_objects_from_remote_or_local_url(web_url_or_qt_file_url, user, ufs_obj_type=UfsObj.TYPE_UFS_OBJ): """ Create object if url is not exist, otherwise use the existing one. So if an existing url is passed in the existing item will be updated instead of creating a new one. :param web_url_or_qt_file_url: :param user: :param ufs_obj_type: """ # Tag object if obj_tools.is_web_url(web_url_or_qt_file_url) or is_barcode(web_url_or_qt_file_url): obj_saver = UfsUrlObj(web_url_or_qt_file_url, user) else: obj_saver = UfsLocalObjSaver(user) obj_saver.init_with_qt_url(web_url_or_qt_file_url) return obj_saver.filter_or_create() def append_tags_and_description_to_url(user, web_url_or_qt_file_url, str_of_tags, description, ufs_obj_type=UfsObj.TYPE_UFS_OBJ): if obj_tools.is_web_url(web_url_or_qt_file_url) or is_barcode(web_url_or_qt_file_url): obj_saver = UfsUrlObj(web_url_or_qt_file_url, user, ufs_obj_type=ufs_obj_type) else: obj_saver = UfsLocalObjSaver(user) obj_saver.init_with_qt_url(web_url_or_qt_file_url) obj_saver.get_or_create() description_obj, created = Description.objects.get_or_create(content=description) obj_saver.tag_app = 'user:' + user.username obj_saver.append_tags(str_of_tags) obj_saver.add_description(description_obj) @csrf_exempt def handle_append_tags_request(request): req_with_auth = RequestWithAuth(request) if not req_with_auth.is_authenticated(): res = req_with_auth.get_error_dict() res["result"] = "error" return JsonResponse(res) tags = req_with_auth.data.get("tags", None) description = req_with_auth.data.get("description", None) ufs_obj_type = int(req_with_auth.data.get("ufs_obj_type", "1")) added_cnt = 0 for query_param_list in req_with_auth.data.lists(): if query_param_list[0] == "selected_url": for url in query_param_list[1]: append_tags_and_description_to_url(request.user, url, tags, description, ufs_obj_type) added_cnt += 1 return JsonResponse({"result": "OK", "added": "%d" % added_cnt}) def remove_tag(request): data = retrieve_param(request) if ('ufs_url' in data) and ('tag' in data): # print data['ufs_url'] obj_list = UfsObj.objects.filter(ufs_url=data['ufs_url']) if 0 != obj_list.count(): tags = obj_list[0].tags tag_name = [] for tag in tags: if tag.name != data['tag']: tag_name.append(tag.name) obj_list[0].tags = ','.join(tag_name) print tag_name return JsonResponse({"result": "remove tag done"}) return JsonResponse({"result": "not enough params"}) def get_tags(request): tag_list = Tag.objects.usage_for_model(UfsObj) tag_name_list = [] for i in tag_list: tag_name_list.append(i.name) return HttpResponse(json.dumps(tag_name_list)) def add_tag(request): data = retrieve_param(request) if ('ufs_url' in data) and ('tag' in data): obj = get_ufs_obj_from_ufs_url(data['ufs_url']) Tag.objects.add_tag(obj, data["tag"], tag_app='user:' + request.user.username) return HttpResponse('{"result": "added tag: %s to %s done"}' % (data["tag"], data["ufs_url"]), mimetype="application/json") return JsonResponse({"result": "not enough params"})
{ "content_hash": "3f3c5b93845ac2432123bad4d05f1dd2", "timestamp": "", "source": "github", "line_count": 118, "max_line_length": 115, "avg_line_length": 38.40677966101695, "alnum_prop": 0.659973521624007, "repo_name": "weijia/obj_sys", "id": "1b8ed22e8ed756ff7a4cdeb18a9553d805bb6635", "size": "4532", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "obj_sys/obj_tagging.py", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "CSS", "bytes": "2851" }, { "name": "HTML", "bytes": "12274" }, { "name": "Makefile", "bytes": "1269" }, { "name": "Python", "bytes": "102004" } ], "symlink_target": "" }
local api = premake.api local DOC_URL = "See https://bitbucket.org/premake/premake-dev/wiki/" ----------------------------------------------------------------------------- -- -- Register the core API functions. -- ----------------------------------------------------------------------------- api.register { name = "architecture", scope = "config", kind = "string", allowed = { "universal", "x32", "x64", }, } api.register { name = "atl", scope = "config", kind = "string", allowed = { "Off", "Dynamic", "Static", }, } api.register { name = "basedir", scope = "project", kind = "path" } api.register { name = "buildaction", scope = "config", kind = "string", allowed = { "Application", "Compile", "Component", "Copy", "Embed", "Form", "None", "Resource", "UserControl", }, } api.register { name = "buildcommands", scope = { "config", "rule" }, kind = "list:string", tokens = true, } api.alias("buildcommands", "buildCommands") api.register { name = "buildDependencies", scope = { "rule" }, kind = "list:string", tokens = true, } api.register { name = "buildmessage", scope = { "config", "rule" }, kind = "string", tokens = true } api.alias("buildmessage", "buildMessage") api.register { name = "buildoptions", scope = "config", kind = "list:string", tokens = true, } api.register { name = "buildoutputs", scope = { "config", "rule" }, kind = "list:path", tokens = true, } api.alias("buildoutputs", "buildOutputs") api.register { name = "buildinputs", scope = "config", kind = "list:path", tokens = true, } api.register { name = "buildrule", -- DEPRECATED scope = "config", kind = "table", tokens = true, } api.register { name = "cleancommands", scope = "config", kind = "list:string", tokens = true, } api.register { name = "cleanExtensions", scope = "config", kind = "list:string", } api.register { name = "clr", scope = "config", kind = "string", allowed = { "Off", "On", "Pure", "Safe", "Unsafe", } } api.register { name = "configmap", scope = "project", kind = "list:keyed:array:string", } api.register { name = "configFile", scope = "config", kind = "string", tokens = true, } api.register { name = "configurations", scope = "project", kind = "list:string", } api.register { name = "copylocal", scope = "config", kind = "list:mixed", tokens = true, } api.register { name = "debugargs", scope = "config", kind = "list:string", tokens = true, } api.register { name = "debugcommand", scope = "config", kind = "path", tokens = true, } api.register { name = "debugdir", scope = "config", kind = "path", tokens = true, } api.register { name = "debugenvs", scope = "config", kind = "list:string", tokens = true, } api.register { name = "debugformat", scope = "config", kind = "string", allowed = { "c7", }, } api.register { name = "defaultplatform", scope = "project", kind = "string", } api.register { name = "defines", scope = "config", kind = "list:string", tokens = true, } api.register { name = "dependson", scope = "config", kind = "list:string", tokens = true, } api.register { name = "deploymentoptions", scope = "config", kind = "list:string", tokens = true, } api.register { name = "display", scope = "rule", kind = "string", } api.register { name = "editAndContinue", scope = "config", kind = "boolean", } -- For backward compatibility, excludes() is now an alias for removefiles() function excludes(value) removefiles(value) end api.register { name = "fileExtension", scope = "rule", kind = "string", } api.register { name = "filename", scope = { "project", "rule" }, kind = "string", tokens = true, } api.register { name = "files", scope = "config", kind = "list:file", tokens = true, } api.register { name = "flags", scope = "config", kind = "list:string", allowed = { "Component", -- DEPRECATED "DebugEnvsDontMerge", "DebugEnvsInherit", "EnableSSE", -- DEPRECATED "EnableSSE2", -- DEPRECATED "ExcludeFromBuild", "ExtraWarnings", -- DEPRECATED "FatalCompileWarnings", "FatalLinkWarnings", "FloatFast", -- DEPRECATED "FloatStrict", -- DEPRECATED "LinkTimeOptimization", "Managed", -- DEPRECATED "Maps", "MFC", "MultiProcessorCompile", "NativeWChar", -- DEPRECATED "No64BitChecks", "NoCopyLocal", "NoEditAndContinue", -- DEPRECATED "NoExceptions", "NoFramePointer", "NoImplicitLink", "NoImportLib", "NoIncrementalLink", "NoManifest", "NoMinimalRebuild", "NoNativeWChar", -- DEPRECATED "NoPCH", "NoRuntimeChecks", "NoRTTI", "NoBufferSecurityCheck", "NoWarnings", -- DEPRECATED "OmitDefaultLibrary", "Optimize", -- DEPRECATED "OptimizeSize", -- DEPRECATED "OptimizeSpeed", -- DEPRECATED "ReleaseRuntime", "SEH", "ShadowedVariables", "StaticRuntime", "Symbols", "UndefinedIdentifiers", "Unicode", "Unsafe", -- DEPRECATED "WinMain", "WPF", }, aliases = { FatalWarnings = { "FatalWarnings", "FatalCompileWarnings", "FatalLinkWarnings" }, Optimise = 'Optimize', OptimiseSize = 'OptimizeSize', OptimiseSpeed = 'OptimizeSpeed', }, } api.register { name = "floatingpoint", scope = "config", kind = "string", allowed = { "Default", "Fast", "Strict", } } api.register { name = "forceincludes", scope = "config", kind = "list:mixed", tokens = true, } api.register { name = "forceusings", scope = "config", kind = "list:file", tokens = true, } api.register { name = "framework", scope = "config", kind = "string", } api.register { name = "icon", scope = "project", kind = "file", tokens = true, } api.register { name = "imageoptions", scope = "config", kind = "list:string", tokens = true, } api.register { name = "imagepath", scope = "config", kind = "path", tokens = true, } api.register { name = "implibdir", scope = "config", kind = "path", tokens = true, } api.register { name = "implibextension", scope = "config", kind = "string", tokens = true, } api.register { name = "implibname", scope = "config", kind = "string", tokens = true, } api.register { name = "implibprefix", scope = "config", kind = "string", tokens = true, } api.register { name = "implibsuffix", scope = "config", kind = "string", tokens = true, } api.register { name = "includedirs", scope = "config", kind = "list:directory", tokens = true, } api.register { name = "kind", scope = "config", kind = "string", allowed = { "ConsoleApp", "Makefile", "None", "SharedLib", "StaticLib", "WindowedApp", "Utility", }, } api.register { name = "language", scope = "project", kind = "string", allowed = { "C", "C++", "C#", }, } api.register { name = "libdirs", scope = "config", kind = "list:directory", tokens = true, } api.register { name = "linkoptions", scope = "config", kind = "list:string", tokens = true, } api.register { name = "links", scope = "config", kind = "list:mixed", tokens = true, } api.register { name = "locale", scope = "config", kind = "string", tokens = false, } api.register { name = "location", scope = { "project", "rule" }, kind = "path", tokens = true, } api.register { name = "makesettings", scope = "config", kind = "list:string", tokens = true, } api.register { name = "namespace", scope = "project", kind = "string", tokens = true, } api.register { name = "nativewchar", scope = "config", kind = "string", allowed = { "Default", "On", "Off", } } api.register { name = "objdir", scope = "config", kind = "path", tokens = true, } api.register { name = "optimize", scope = "config", kind = "string", allowed = { "Off", "On", "Debug", "Size", "Speed", "Full", } } api.register { name = "pchheader", scope = "config", kind = "string", tokens = true, } api.register { name = "pchsource", scope = "config", kind = "path", tokens = true, } api.register { name = "platforms", scope = "project", kind = "list:string", } api.register { name = "postbuildcommands", scope = "config", kind = "list:string", tokens = true, } api.register { name = "postbuildmessage", scope = "config", kind = "string", tokens = true, } api.register { name = "prebuildcommands", scope = "config", kind = "list:string", tokens = true, } api.register { name = "prebuildmessage", scope = "config", kind = "string", tokens = true, } api.register { name = "prelinkcommands", scope = "config", kind = "list:string", tokens = true, } api.register { name = "prelinkmessage", scope = "config", kind = "string", tokens = true, } api.register { name = "propertyDefinition", scope = "rule", kind = "list:table", } api.register { name = "rebuildcommands", scope = "config", kind = "list:string", tokens = true, } api.register { name = "resdefines", scope = "config", kind = "list:string", tokens = true, } api.register { name = "resincludedirs", scope = "config", kind = "list:directory", tokens = true, } api.register { name = "resoptions", scope = "config", kind = "list:string", tokens = true, } api.register { name = "rules", scope = "project", kind = "list:string", } api.register { name = "startproject", scope = "solution", kind = "string", tokens = true, } api.register { name = "strictaliasing", scope = "config", kind = "string", allowed = { "Off", "Level1", "Level2", "Level3", } } api.register { name = "system", scope = "config", kind = "string", allowed = { "aix", "bsd", "haiku", "linux", "macosx", "solaris", "wii", "windows", "xbox360", }, } api.register { name = "targetdir", scope = "config", kind = "path", tokens = true, } api.register { name = "targetextension", scope = "config", kind = "string", tokens = true, } api.register { name = "targetname", scope = "config", kind = "string", tokens = true, } api.register { name = "targetprefix", scope = "config", kind = "string", tokens = true, } api.register { name = "targetsuffix", scope = "config", kind = "string", tokens = true, } api.register { name = "toolset", scope = "config", kind = "string", allowed = function(value) local key = value:lower() if premake.tools[key] ~= nil then return key end end, } api.register { name = "usingdirs", scope = "config", kind = "list:directory", tokens = true, } api.register { name = "uuid", scope = "project", kind = "string", allowed = function(value) local ok = true if (#value ~= 36) then ok = false end for i=1,36 do local ch = value:sub(i,i) if (not ch:find("[ABCDEFabcdef0123456789-]")) then ok = false end end if (value:sub(9,9) ~= "-") then ok = false end if (value:sub(14,14) ~= "-") then ok = false end if (value:sub(19,19) ~= "-") then ok = false end if (value:sub(24,24) ~= "-") then ok = false end if (not ok) then return nil, "invalid UUID" end return value:upper() end } api.register { name = "vectorextensions", scope = "config", kind = "string", allowed = { "Default", "AVX", "SSE", "SSE2", } } api.register { name = "vpaths", scope = "project", kind = "list:keyed:list:path", } api.register { name = "warnings", scope = "config", kind = "string", allowed = { "Off", "Default", "Extra", } } ----------------------------------------------------------------------------- -- -- Handlers for deprecated fields and values. -- ----------------------------------------------------------------------------- -- 09 Apr 2013 api.deprecateField("buildrule", nil, function(value) if value.description then buildmessage(value.description) end buildcommands(value.commands) buildoutputs(value.outputs) end) -- 17 Jun 2013 api.deprecateValue("flags", "Component", nil, function(value) buildaction "Component" end) -- 26 Sep 2013 api.deprecateValue("flags", { "EnableSSE", "EnableSSE2" }, nil, function(value) vectorextensions(value:sub(7)) end, function(value) vectorextension "Default" end) api.deprecateValue("flags", { "FloatFast", "FloatStrict" }, nil, function(value) floatingpoint(value:sub(6)) end, function(value) floatingpoint "Default" end) api.deprecateValue("flags", { "NativeWChar", "NoNativeWChar" }, nil, function(value) local map = { NativeWChar = "On", NoNativeWChar = "Off" } nativewchar(map[value] or "Default") end, function(value) nativewchar "Default" end) api.deprecateValue("flags", { "Optimize", "OptimizeSize", "OptimizeSpeed" }, nil, function(value) local map = { Optimize = "On", OptimizeSize = "Size", OptimizeSpeed = "Speed" } optimize (map[value] or "Off") end, function(value) optimize "Off" end) api.deprecateValue("flags", { "Optimise", "OptimiseSize", "OptimiseSpeed" }, nil, function(value) local map = { Optimise = "On", OptimiseSize = "Size", OptimiseSpeed = "Speed" } optimize (map[value] or "Off") end, function(value) optimize "Off" end) api.deprecateValue("flags", { "ExtraWarnings", "NoWarnings" }, nil, function(value) local map = { ExtraWarnings = "Extra", NoWarnings = "Off" } warnings (map[value] or "Default") end, function(value) warnings "Default" end) -- 10 Nov 2014 api.deprecateValue("flags", "Managed", nil, function(value) clr "On" end, function(value) clr "Off" end) api.deprecateValue("flags", "NoEditAndContinue", nil, function(value) editAndContinue "Off" end, function(value) editAndContinue "On" end) api.deprecateValue("flags", "Unsafe", nil, function(value) clr "Unsafe" end, function(value) clr "On" end) ----------------------------------------------------------------------------- -- -- Install Premake's default set of command line arguments. -- ----------------------------------------------------------------------------- newoption { trigger = "cc", value = "VALUE", description = "Choose a C/C++ compiler set", allowed = { { "clang", "Clang (clang)" }, { "gcc", "GNU GCC (gcc/g++)" }, } } newoption { trigger = "dotnet", value = "VALUE", description = "Choose a .NET compiler set", allowed = { { "msnet", "Microsoft .NET (csc)" }, { "mono", "Novell Mono (mcs)" }, { "pnet", "Portable.NET (cscc)" }, } } newoption { trigger = "fatal", description = "Treat warnings from project scripts as errors" } newoption { trigger = "file", value = "FILE", description = "Read FILE as a Premake script; default is 'premake5.lua'" } newoption { trigger = "help", description = "Display this information" } newoption { trigger = "interactive", description = "Interactive command prompt" } newoption { trigger = "os", value = "VALUE", description = "Generate files for a different operating system", allowed = { { "aix", "IBM AIX" }, { "bsd", "OpenBSD, NetBSD, or FreeBSD" }, { "haiku", "Haiku" }, { "hurd", "GNU/Hurd" }, { "linux", "Linux" }, { "macosx", "Apple Mac OS X" }, { "solaris", "Solaris" }, { "windows", "Microsoft Windows" }, } } newoption { trigger = "scripts", value = "PATH", description = "Search for additional scripts on the given path" } newoption { trigger = "systemscript", value = "FILE", description = "Override default system script (premake5-system.lua)" } newoption { trigger = "version", description = "Display version information" } ----------------------------------------------------------------------------- -- -- Set up the global environment for the systems I know about. I would like -- to see at least some if not all of this moved into add-ons in the future. -- ----------------------------------------------------------------------------- clr "Off" editAndContinue "On" -- Setting a default language makes some validation easier later language "C++" -- Use Posix-style target naming by default, since it is the most common. filter { "kind:SharedLib" } targetprefix "lib" targetextension ".so" filter { "kind:StaticLib" } targetprefix "lib" targetextension ".a" -- Add variations for other Posix-like systems. filter { "system:MacOSX", "kind:SharedLib" } targetextension ".dylib" -- Windows and friends. filter { "system:Windows or language:C#", "kind:ConsoleApp or WindowedApp" } targetextension ".exe" filter { "system:Xbox360", "kind:ConsoleApp or WindowedApp" } targetextension ".exe" filter { "system:Windows or Xbox360", "kind:SharedLib" } targetprefix "" targetextension ".dll" implibextension ".lib" filter { "system:Windows or Xbox360", "kind:StaticLib" } targetprefix "" targetextension ".lib" filter { "language:C#", "kind:SharedLib" } targetprefix "" targetextension ".dll" implibextension ".dll"
{ "content_hash": "2f866fdad3fc46d62b923f8f90fc1a47", "timestamp": "", "source": "github", "line_count": 1044, "max_line_length": 84, "avg_line_length": 16.910919540229884, "alnum_prop": 0.5675446049277825, "repo_name": "annulen/premake", "id": "24e4cfe1ffc24f7fcd171371234d80d240ca0418", "size": "17832", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/_premake_init.lua", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "Batchfile", "bytes": "1171" }, { "name": "C", "bytes": "488822" }, { "name": "C++", "bytes": "18506" }, { "name": "CSS", "bytes": "708" }, { "name": "HTML", "bytes": "284725" }, { "name": "Lua", "bytes": "841327" }, { "name": "Makefile", "bytes": "11648" }, { "name": "Roff", "bytes": "9450" }, { "name": "Shell", "bytes": "99" } ], "symlink_target": "" }
package com.thoughtworks.go.plugin.configrepo.contract.material; import com.google.gson.JsonObject; import com.thoughtworks.go.plugin.configrepo.contract.AbstractCRTest; import org.junit.jupiter.api.Test; import java.util.Arrays; import java.util.Map; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; public class CRSvnMaterialTest extends AbstractCRTest<CRSvnMaterial> { private final CRSvnMaterial simpleSvn; private final CRSvnMaterial simpleSvnAuth; private final CRSvnMaterial customSvn; private final CRSvnMaterial invalidNoUrl; private final CRSvnMaterial invalidPasswordAndEncyptedPasswordSet; public CRSvnMaterialTest() { simpleSvn = new CRSvnMaterial(); simpleSvn.setUrl("http://mypublicrepo"); simpleSvnAuth = new CRSvnMaterial(); simpleSvnAuth.setUrl("http://myprivaterepo"); simpleSvnAuth.setUsername("john"); simpleSvnAuth.setPassword("pa$sw0rd"); customSvn = new CRSvnMaterial("svnMaterial1", "destDir1", false, false, "user1", Arrays.asList("tools", "lib"), "http://svn", true); customSvn.setPassword("pass1"); invalidNoUrl = new CRSvnMaterial(); invalidPasswordAndEncyptedPasswordSet = new CRSvnMaterial(); invalidPasswordAndEncyptedPasswordSet.setUrl("http://myprivaterepo"); invalidPasswordAndEncyptedPasswordSet.setPassword("pa$sw0rd"); invalidPasswordAndEncyptedPasswordSet.setEncryptedPassword("26t=$j64"); } @Override public void addGoodExamples(Map<String, CRSvnMaterial> examples) { examples.put("simpleSvn", simpleSvn); examples.put("simpleSvnAuth", simpleSvnAuth); examples.put("customSvn", customSvn); } @Override public void addBadExamples(Map<String, CRSvnMaterial> examples) { examples.put("invalidNoUrl", invalidNoUrl); examples.put("invalidPasswordAndEncyptedPasswordSet", invalidPasswordAndEncyptedPasswordSet); } @Test public void shouldAppendTypeFieldWhenSerializingMaterials() { CRMaterial value = customSvn; JsonObject jsonObject = (JsonObject) gson.toJsonTree(value); assertThat(jsonObject.get("type").getAsString(), is(CRSvnMaterial.TYPE_NAME)); } @Test public void shouldHandlePolymorphismWhenDeserializing() { CRMaterial value = customSvn; String json = gson.toJson(value); CRSvnMaterial deserializedValue = (CRSvnMaterial) gson.fromJson(json, CRMaterial.class); assertThat("Deserialized value should equal to value before serialization", deserializedValue, is(value)); } }
{ "content_hash": "612cab99206b5b356363a38bbf2b8907", "timestamp": "", "source": "github", "line_count": 71, "max_line_length": 101, "avg_line_length": 37.7887323943662, "alnum_prop": 0.7208348863212821, "repo_name": "GaneshSPatil/gocd", "id": "178b001275672f911d0b1fd43bf36b329bfbf358", "size": "3284", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "plugin-infra/go-plugin-config-repo/src/test/java/com/thoughtworks/go/plugin/configrepo/contract/material/CRSvnMaterialTest.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "466" }, { "name": "CSS", "bytes": "1578" }, { "name": "EJS", "bytes": "1626" }, { "name": "FreeMarker", "bytes": "10183" }, { "name": "Groovy", "bytes": "2467987" }, { "name": "HTML", "bytes": "330937" }, { "name": "Java", "bytes": "21404638" }, { "name": "JavaScript", "bytes": "2331039" }, { "name": "NSIS", "bytes": "23525" }, { "name": "PowerShell", "bytes": "664" }, { "name": "Ruby", "bytes": "623850" }, { "name": "SCSS", "bytes": "820788" }, { "name": "Sass", "bytes": "21277" }, { "name": "Shell", "bytes": "169730" }, { "name": "TypeScript", "bytes": "4428865" }, { "name": "XSLT", "bytes": "207072" } ], "symlink_target": "" }
"""Dealy layer.""" from kws_streaming.layers import modes from kws_streaming.layers.compat import tf class Delay(tf.keras.layers.Layer): """Delay layer. It is useful for introducing delay in streaming mode for non causal filters. For example in residual connections with multiple conv layers Attributes: mode: Training or inference modes: non streaming, streaming. delay: delay value inference_batch_size: batch size in inference mode also_in_non_streaming: Apply delay also in training and non-streaming inference mode. **kwargs: additional layer arguments """ def __init__(self, mode=modes.Modes.TRAINING, delay=0, inference_batch_size=1, also_in_non_streaming=False, **kwargs): super(Delay, self).__init__(**kwargs) self.mode = mode self.delay = delay self.inference_batch_size = inference_batch_size self.also_in_non_streaming = also_in_non_streaming if delay < 0: raise ValueError('delay (%d) must be non-negative' % delay) def build(self, input_shape): super(Delay, self).build(input_shape) if self.delay > 0: self.state_shape = [self.inference_batch_size, self.delay ] + input_shape.as_list()[2:] if self.mode == modes.Modes.STREAM_INTERNAL_STATE_INFERENCE: self.states = self.add_weight( name='states', shape=self.state_shape, trainable=False, initializer=tf.zeros_initializer) elif self.mode == modes.Modes.STREAM_EXTERNAL_STATE_INFERENCE: # For streaming inference with extrnal states, # the states are passed in as input. self.input_state = tf.keras.layers.Input( shape=self.state_shape[1:], batch_size=self.inference_batch_size, name=self.name + '/input_state_delay') self.output_state = None def call(self, inputs): if self.delay == 0: return inputs if self.mode == modes.Modes.STREAM_INTERNAL_STATE_INFERENCE: return self._streaming_internal_state(inputs) elif self.mode == modes.Modes.STREAM_EXTERNAL_STATE_INFERENCE: # in streaming inference mode with external state # in addition to the output we return the output state. output, self.output_state = self._streaming_external_state( inputs, self.input_state) return output elif self.mode in (modes.Modes.TRAINING, modes.Modes.NON_STREAM_INFERENCE): # run non streamable training or non streamable inference return self._non_streaming(inputs) else: raise ValueError(f'Encountered unexpected mode `{self.mode}`.') def get_config(self): config = super(Delay, self).get_config() config.update({ 'mode': self.mode, 'delay': self.delay, 'inference_batch_size': self.inference_batch_size, 'also_in_non_streaming': self.also_in_non_streaming, }) return config def _streaming_internal_state(self, inputs): memory = tf.keras.backend.concatenate([self.states, inputs], 1) outputs = memory[:, :inputs.shape.as_list()[1]] new_memory = memory[:, -self.delay:] assign_states = self.states.assign(new_memory) with tf.control_dependencies([assign_states]): return tf.identity(outputs) def _streaming_external_state(self, inputs, states): memory = tf.keras.backend.concatenate([states, inputs], 1) outputs = memory[:, :inputs.shape.as_list()[1]] new_memory = memory[:, -self.delay:] return outputs, new_memory def _non_streaming(self, inputs): if self.also_in_non_streaming: return tf.pad(inputs, ((0, 0), (self.delay, 0)) + ((0, 0),) * (inputs.shape.rank - 2))[:, :-self.delay] else: return inputs def get_input_state(self): # input state will be used only for STREAM_EXTERNAL_STATE_INFERENCE mode if self.mode == modes.Modes.STREAM_EXTERNAL_STATE_INFERENCE: return [self.input_state] else: raise ValueError('Expected the layer to be in external streaming mode, ' f'not `{self.mode}`.') def get_output_state(self): # output state will be used only for STREAM_EXTERNAL_STATE_INFERENCE mode if self.mode == modes.Modes.STREAM_EXTERNAL_STATE_INFERENCE: return [self.output_state] else: raise ValueError('Expected the layer to be in external streaming mode, ' f'not `{self.mode}`.')
{ "content_hash": "4e676ea13293384d689dbdd296b83377", "timestamp": "", "source": "github", "line_count": 126, "max_line_length": 79, "avg_line_length": 35.65079365079365, "alnum_prop": 0.6447016918967052, "repo_name": "google-research/google-research", "id": "08b4e1cb0ba0748604b720987777ec85d69ebd97", "size": "5100", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "kws_streaming/layers/delay.py", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "C", "bytes": "9817" }, { "name": "C++", "bytes": "4166670" }, { "name": "CMake", "bytes": "6412" }, { "name": "CSS", "bytes": "27092" }, { "name": "Cuda", "bytes": "1431" }, { "name": "Dockerfile", "bytes": "7145" }, { "name": "Gnuplot", "bytes": "11125" }, { "name": "HTML", "bytes": "77599" }, { "name": "ImageJ Macro", "bytes": "50488" }, { "name": "Java", "bytes": "487585" }, { "name": "JavaScript", "bytes": "896512" }, { "name": "Julia", "bytes": "67986" }, { "name": "Jupyter Notebook", "bytes": "71290299" }, { "name": "Lua", "bytes": "29905" }, { "name": "MATLAB", "bytes": "103813" }, { "name": "Makefile", "bytes": "5636" }, { "name": "NASL", "bytes": "63883" }, { "name": "Perl", "bytes": "8590" }, { "name": "Python", "bytes": "53790200" }, { "name": "R", "bytes": "101058" }, { "name": "Roff", "bytes": "1208" }, { "name": "Rust", "bytes": "2389" }, { "name": "Shell", "bytes": "730444" }, { "name": "Smarty", "bytes": "5966" }, { "name": "Starlark", "bytes": "245038" } ], "symlink_target": "" }
class CreatePages < ActiveRecord::Migration[5.1] def change create_table :pages do |t| t.text :name t.string :slug t.text :content t.integer :parent_id t.string :parent_type t.timestamps end add_index :pages, [:parent_type, :parent_id, :slug], unique: true end end
{ "content_hash": "f7e733ca364f273bf98aa9b357e07e64", "timestamp": "", "source": "github", "line_count": 15, "max_line_length": 69, "avg_line_length": 21.266666666666666, "alnum_prop": 0.6175548589341693, "repo_name": "neinteractiveliterature/intercode", "id": "3f82b18f43e12f3596eb9044ac1a863fb46f65e8", "size": "319", "binary": false, "copies": "1", "ref": "refs/heads/main", "path": "db/migrate/20120616163017_create_pages.rb", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "1616" }, { "name": "Dockerfile", "bytes": "2534" }, { "name": "HTML", "bytes": "26576" }, { "name": "JavaScript", "bytes": "41769" }, { "name": "Liquid", "bytes": "211563" }, { "name": "PLpgSQL", "bytes": "156320" }, { "name": "Procfile", "bytes": "298" }, { "name": "Ruby", "bytes": "1545558" }, { "name": "SCSS", "bytes": "22363" }, { "name": "Shell", "bytes": "6896" }, { "name": "TypeScript", "bytes": "2941901" } ], "symlink_target": "" }
[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/) iOS slide over menu skeleton. ## What's this? Many of our apps are using some sort of slide menu, aka the hamburger menu or Facebook menu. Up to iOS 7 we used [ViewDeck](https://github.com/Inferis/ViewDeck) exclusively but are now transitioning to [REFrostedViewController](https://github.com/romaonthego/REFrostedViewController). Our previous code pattern to deal with the menu and changing the content controller needed some updating, not only because of the new library we're using but also to make the code more modern, readable and extensible with better memory management. This repository is our skeleton for apps using REFrostedViewController, but the same code pattern can be used for other menu systems as well. ## Who are we? Gangverk is a software consultancy founded by seasoned software professionals. We have been creating applications, both desktop and web-based for over a decade. Of late we have been focusing on mobile applications, specifically media applications for mobile users. We pride ourselves in our ability to offer our clients assistance throughout the creative process from conception to design to implementation, operation and maintenance. Gangverk is an Icelandic word that literally means "that what makes stuff tick", originally coined for the machinery of clocks but in later times has taken over the connotation of whatever it is that keeps things operating smoothly underneath a polished exterior. Visit us at [gangverk.is](http://www.gangverk.is).
{ "content_hash": "2db58ee32eab62d71bbff8a0b6f8dd48", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 434, "avg_line_length": 93.23529411764706, "alnum_prop": 0.8069400630914827, "repo_name": "gangverk/MenuSkeleton", "id": "550f781bc02d49c9fddd51e2732dad86451c3b35", "size": "1600", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "README.md", "mode": "33188", "license": "mit", "language": [ { "name": "Objective-C", "bytes": "15186" }, { "name": "Ruby", "bytes": "102" } ], "symlink_target": "" }
#import <Cocoa/Cocoa.h> #import <UnitKit/UnitKit.h> // This class doesn't implement the UKTest protocol because it is not // supposed to get picked up automatically out of a test bundle. Instead // it is used by UKTestMacros to test out all of the macros. #import <Cocoa/Cocoa.h> @interface TestUKNotNil_Negative : NSObject { } @end
{ "content_hash": "3dfa50669843349bc7098dfab736954f", "timestamp": "", "source": "github", "line_count": 17, "max_line_length": 72, "avg_line_length": 20.058823529411764, "alnum_prop": 0.7390029325513197, "repo_name": "heckj/unitkit", "id": "157be025db789dde178c9852b273d41eb6b8cf5d", "size": "1196", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Tests/UnitKitTests/TestUKNotNil_Negative.h", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Objective-C", "bytes": "207085" } ], "symlink_target": "" }
<?xml version="1.0" encoding="UTF-8"?> <!--L Copyright Oracle Inc Distributed under the OSI-approved BSD 3-Clause License. See http://ncip.github.com/cadsr-cgmdr-nci-uk/LICENSE.txt for details. L--> <cgMDR:Enumerated_Value_Domain xmlns:cgMDR="http://www.cancergrid.org/schema/cgMDR" item_registration_authority_identifier="GB-CANCERGRID-MB" data_identifier="05CD6E5D7" version="0.1"> <cgMDR:administered_item_administration_record> <cgMDR:administrative_note>please complete administrative-note...</cgMDR:administrative_note> <cgMDR:administrative_status>noPendingChanges</cgMDR:administrative_status> <cgMDR:creation_date>2007-08-29</cgMDR:creation_date> <cgMDR:effective_date>2007-08-29</cgMDR:effective_date> <cgMDR:last_change_date>2007-08-29</cgMDR:last_change_date> <cgMDR:registration_status>recorded</cgMDR:registration_status> </cgMDR:administered_item_administration_record> <cgMDR:administered_by>GB-CANCERGRID-300003-1</cgMDR:administered_by> <cgMDR:registered_by>GB-CANCERGRID-300004-1</cgMDR:registered_by> <cgMDR:submitted_by>GB-CANCERGRID-300003-1</cgMDR:submitted_by> <cgMDR:having> <cgMDR:context_identifier>GB-CANCERGRID-900001-1</cgMDR:context_identifier> <cgMDR:containing> <cgMDR:language_section_language_identifier> <cgMDR:country_identifier>GB</cgMDR:country_identifier> <cgMDR:language_identifier>eng</cgMDR:language_identifier> </cgMDR:language_section_language_identifier> <cgMDR:name>Progesterone receptor status</cgMDR:name> <cgMDR:definition_text>The PR status of the patient as determined by PR testing.</cgMDR:definition_text> <cgMDR:preferred_designation>true</cgMDR:preferred_designation> <cgMDR:definition_source_reference/> </cgMDR:containing> </cgMDR:having> <cgMDR:typed_by>GB-CANCERGRID-000010-1</cgMDR:typed_by> <cgMDR:value_domain_datatype>KRMZ1P97F</cgMDR:value_domain_datatype> <cgMDR:value_domain_unit_of_measure>MV3QWZ2YG</cgMDR:value_domain_unit_of_measure> <cgMDR:containing permissible_value_identifier="5575E36B9"> <cgMDR:permissible_value_begin_date>2007-08-29+01:00</cgMDR:permissible_value_begin_date> <cgMDR:value_item>neg</cgMDR:value_item> <cgMDR:contained_in>773A27219</cgMDR:contained_in> </cgMDR:containing> <cgMDR:containing permissible_value_identifier="3752B15CD"> <cgMDR:permissible_value_begin_date>2007-08-29+01:00</cgMDR:permissible_value_begin_date> <cgMDR:value_item>pos</cgMDR:value_item> <cgMDR:contained_in>D69A2123C</cgMDR:contained_in> </cgMDR:containing> <cgMDR:containing permissible_value_identifier="9215C72D9"> <cgMDR:permissible_value_begin_date>2007-08-29+01:00</cgMDR:permissible_value_begin_date> <cgMDR:value_item>weakp</cgMDR:value_item> <cgMDR:contained_in>0560B24B5</cgMDR:contained_in> </cgMDR:containing> <cgMDR:representing>GB-CANCERGRID-MB-3E5A05B12-0.1</cgMDR:representing> </cgMDR:Enumerated_Value_Domain>
{ "content_hash": "964adab2ed66296f80ef7bed8843d226", "timestamp": "", "source": "github", "line_count": 54, "max_line_length": 184, "avg_line_length": 57.81481481481482, "alnum_prop": 0.7194106342088404, "repo_name": "NCIP/cadsr-cgmdr-nci-uk", "id": "ba9c84b500a5a9d376ce1e12e9d920aad6861b78", "size": "3122", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "cancergrid/datasets/cancergrid-dataset/data/value_domain/GB-CANCERGRID-MB-05CD6E5D7-0.1.xml", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "C#", "bytes": "291811" }, { "name": "CSS", "bytes": "46374" }, { "name": "Emacs Lisp", "bytes": "1302" }, { "name": "Java", "bytes": "12447025" }, { "name": "JavaScript", "bytes": "659235" }, { "name": "Perl", "bytes": "14339" }, { "name": "Python", "bytes": "8079" }, { "name": "Shell", "bytes": "47723" }, { "name": "XQuery", "bytes": "592174" }, { "name": "XSLT", "bytes": "441742" } ], "symlink_target": "" }
FROM centos:7 MAINTAINER U.G. Wilson # Setup environment variables for application environment and configuration. ENV DJANGO_CONFIGURATION=PRODUCTION # Install Python 3 RUN yum update RUN yum install -y yum-utils RUN yum -y groupinstall development RUN yum -y install https://centos7.iuscommunity.org/ius-release.rpm RUN yum -y install python36u python36u-pip python36u-devel # Copy application code and install requirements. ADD . /app WORKDIR /app RUN pip3.6 install -r requirements.txt # Make collect static files and make database migrations. RUN python3.6 manage.py collectstatic RUN python3.6 manage.py makemigrations RUN python3.6 manage.py migrate ENTRYPOINT ["/bin/bash"] #ENTRYPOINT ["/usr/sbin/apachectl"] #CMD ["-D", "FOREGROUND"] #daphne -b 0.0.0.0 -p 8001 main.asgi:channel_layer
{ "content_hash": "6e321de4cd42f1e8dc9cf4964ec549f2", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 77, "avg_line_length": 28.642857142857142, "alnum_prop": 0.7817955112219451, "repo_name": "c0yote/django-reference", "id": "c56aaf487d7feaa8a641d8040ae4469ade45a01d", "size": "802", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/Dockerfile", "mode": "33188", "license": "mit", "language": [ { "name": "Python", "bytes": "5245" }, { "name": "Shell", "bytes": "689" } ], "symlink_target": "" }
using UnityEngine; public class TeamState_Attack : FSMState<TeamBase> { static readonly TeamState_Attack instance = new TeamState_Attack(); public static TeamState_Attack Instance { get { return instance; } } static TeamState_Attack() { } private TeamState_Attack() { } public override void Enter (TeamBase team) { } public override void Execute (TeamBase team) { if (team.GetBallTeamOwner() == team.OtherTeam) { team.ChangeState(TeamState_Defend.Instance); } } public override void Exit(TeamBase team) { } } /** * */ public class TeamState_Defend : FSMState<TeamBase> { static readonly TeamState_Defend instance = new TeamState_Defend(); public static TeamState_Defend Instance { get { return instance; } } static TeamState_Defend() { } private TeamState_Defend() { } public override void Enter (TeamBase team) { } public override void Execute (TeamBase team) { if (team.GetBallTeamOwner() == team.Team) { team.ChangeState(TeamState_Attack.Instance); } } public override void Exit(TeamBase team) { } } /** * */ public class TeamState_Wait : FSMState<TeamBase> { static readonly TeamState_Wait instance = new TeamState_Wait(); public static TeamState_Wait Instance { get { return instance; } } static TeamState_Wait() { } private TeamState_Wait() { } public override void Enter (TeamBase team) { Main.Pause(PauseFlags.Ai); } public override void Execute (TeamBase team) { } public override void Exit(TeamBase team) { Main.Unpause(PauseFlags.Ai); } }
{ "content_hash": "349129de1ed2789a4691c07c841b2a42", "timestamp": "", "source": "github", "line_count": 83, "max_line_length": 68, "avg_line_length": 18.867469879518072, "alnum_prop": 0.6915708812260536, "repo_name": "spotco/ld-33", "id": "c36c1158493656b669eab62c786c71ca09ecba17", "size": "1566", "binary": false, "copies": "3", "ref": "refs/heads/master", "path": "Assets/Scripts/Ai/TeamStates.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "410531" } ], "symlink_target": "" }
/* -*- mode: C++; c-basic-offset: 4; tab-width: 8; -*- * vi: set shiftwidth=4 tabstop=8: * :indentSize=4:tabSize=8: */ #include "display_info.h" #include "file_index.h" #include <algorithm> #include <cassert> #include <fstream> DisplayInfo::DisplayInfo() : topLineIt(displayedLineNum.end()), bottomLineIt(displayedLineNum.end()) { } void DisplayInfo::go_to_approx(const line_number_t line_num) { if (line_num == 0 || displayedLineNum.empty()) { top(); } else { topLineIt = std::lower_bound(displayedLineNum.begin(), displayedLineNum.end(), line_num); if (topLineIt == displayedLineNum.begin()) { // do nothing } else if (topLineIt == displayedLineNum.end()) { --topLineIt; } else if (*topLineIt == line_num) { // do nothing } else { --topLineIt; } } } void DisplayInfo::assign(lineNum_vector_t&& v) { unsigned old_line_num = 0; if (topLineIt != displayedLineNum.end()) { old_line_num = *topLineIt; } displayedLineNum = std::move(v); topLineIt = bottomLineIt = displayedLineNum.begin(); go_to_approx(old_line_num); } bool DisplayInfo::start() { bottomLineIt = topLineIt; return bottomLineIt != displayedLineNum.end(); } line_number_t DisplayInfo::current() const { if (bottomLineIt == displayedLineNum.end()) { return 0; } return *bottomLineIt; } bool DisplayInfo::next() { if (isLastLineDisplayed()) { return false; } ++bottomLineIt; return true; } bool DisplayInfo::prev() { if (bottomLineIt == displayedLineNum.begin()) { return false; } --bottomLineIt; return true; } bool DisplayInfo::isFirstLineDisplayed() const { return topLineIt == displayedLineNum.begin(); } bool DisplayInfo::isLastLineDisplayed() const { displayedLineNum_t::iterator i = bottomLineIt; return ++i == displayedLineNum.end(); } void DisplayInfo::down() { auto it = topLineIt; if (it == displayedLineNum.end()) { return; } if (++it != displayedLineNum.end()) { topLineIt = it; } } void DisplayInfo::up() { if (topLineIt != displayedLineNum.begin()) { --topLineIt; } } void DisplayInfo::top() { topLineIt = displayedLineNum.begin(); } void DisplayInfo::page_down() { topLineIt = bottomLineIt; } line_number_t DisplayInfo::bottomLineNum() const { if (bottomLineIt == displayedLineNum.end()) { return 0; } return *bottomLineIt; } std::string DisplayInfo::info() const { return "top #" + std::to_string(*topLineIt) + " bottom #" + std::to_string(*bottomLineIt); } line_number_t DisplayInfo::lastLineNum() const { if (displayedLineNum.size() == 0) { return 0; } return displayedLineNum[displayedLineNum.size() - 1]; } bool DisplayInfo::go_to(const line_number_t lineNum) { displayedLineNum_t::iterator i = std::find(displayedLineNum.begin(), displayedLineNum.end(), lineNum); if (i == displayedLineNum.end()) { return false; } bottomLineIt = topLineIt = i; return true; } void DisplayInfo::go_to_perc(unsigned p) { if (p == 0) { top(); return; } if (p > 100) { p = 100; } go_to_approx(static_cast<uint64_t>(lastLineNum()) * static_cast<uint64_t>(p) / static_cast<uint64_t>(100u) + 1u); } line_number_t DisplayInfo::topLineNum() const { if (topLineIt == displayedLineNum.end()) { return 0; } return *topLineIt; } bool DisplayInfo::save(const std::string& filename, file_index& fi) { if (filename.empty()) { return false; } // if this object does not manage lines, create an empty file if (displayedLineNum.empty()) { std::ofstream os(filename); if (! os) { return false; } return true; } assert(displayedLineNum.size() > 0); // check that the last (highest) line number managed by this // object is included in fi. if (displayedLineNum[displayedLineNum.size()-1] >= fi.size()) { return false; } std::ofstream os(filename); if (! os) { return false; } for(auto n : displayedLineNum) { os << fi.line(n) << std::endl; } return true; }
{ "content_hash": "8a28ddf0c2162c5d4dbb375755b089d3", "timestamp": "", "source": "github", "line_count": 220, "max_line_length": 117, "avg_line_length": 18.509090909090908, "alnum_prop": 0.637278978388998, "repo_name": "doj/few", "id": "52920d37a3ab88d007bd8fe9d7aaa8bc78ea3271", "size": "4072", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "display_info.cc", "mode": "33188", "license": "mit", "language": [ { "name": "C", "bytes": "97772" }, { "name": "C++", "bytes": "1387393" }, { "name": "Makefile", "bytes": "3724" } ], "symlink_target": "" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_65) on Tue Sep 30 00:45:12 PDT 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>UserContext (guacamole-ext 0.9.3 API)</title> <meta name="date" content="2014-09-30"> <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="UserContext (guacamole-ext 0.9.3 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/UserContext.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/glyptodon/guacamole/net/auth/UserContext.html" target="_top">Frames</a></li> <li><a href="UserContext.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.glyptodon.guacamole.net.auth</div> <h2 title="Interface UserContext" class="title">Interface UserContext</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleUserContext.html" title="class in org.glyptodon.guacamole.net.auth.simple">SimpleUserContext</a></dd> </dl> <hr> <br> <pre>public interface <span class="strong">UserContext</span></pre> <div class="block">The context of an active user. The functions of this class enforce all permissions and act only within the rights of the associated user.</div> <dl><dt><span class="strong">Author:</span></dt> <dd>Michael Jumper</dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html" title="interface in org.glyptodon.guacamole.net.auth">ConnectionGroup</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/glyptodon/guacamole/net/auth/UserContext.html#getRootConnectionGroup()">getRootConnectionGroup</a></strong>()</code> <div class="block">Retrieves a connection group which can be used to view and manipulate connections, but only as allowed by the permissions given to the user of this UserContext.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth">User</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/glyptodon/guacamole/net/auth/UserContext.html#getUserDirectory()">getUserDirectory</a></strong>()</code> <div class="block">Retrieves a Directory which can be used to view and manipulate other users, but only as allowed by the permissions given to the user of this UserContext.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth">User</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/glyptodon/guacamole/net/auth/UserContext.html#self()">self</a></strong>()</code> <div class="block">Returns the User whose access rights control the operations of this UserContext.</div> </td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="self()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>self</h4> <pre><a href="../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth">User</a>&nbsp;self()</pre> <div class="block">Returns the User whose access rights control the operations of this UserContext.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The User whose access rights control the operations of this UserContext.</dd></dl> </li> </ul> <a name="getUserDirectory()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getUserDirectory</h4> <pre><a href="../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth">User</a>&gt;&nbsp;getUserDirectory() throws GuacamoleException</pre> <div class="block">Retrieves a Directory which can be used to view and manipulate other users, but only as allowed by the permissions given to the user of this UserContext.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>A Directory whose operations are bound by the restrictions of this UserContext.</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>GuacamoleException</code> - If an error occurs while creating the Directory.</dd></dl> </li> </ul> <a name="getRootConnectionGroup()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getRootConnectionGroup</h4> <pre><a href="../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html" title="interface in org.glyptodon.guacamole.net.auth">ConnectionGroup</a>&nbsp;getRootConnectionGroup() throws GuacamoleException</pre> <div class="block">Retrieves a connection group which can be used to view and manipulate connections, but only as allowed by the permissions given to the user of this UserContext.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>A connection group whose operations are bound by the restrictions of this UserContext.</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>GuacamoleException</code> - If an error occurs while creating the Directory.</dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/UserContext.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/glyptodon/guacamole/net/auth/UserContext.html" target="_top">Frames</a></li> <li><a href="UserContext.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014. All rights reserved.</small></p> <!-- Google Analytics --> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-75289145-1', 'auto'); ga('send', 'pageview'); </script> <!-- End Google Analytics --> </body> </html>
{ "content_hash": "13789958fa7c42c2ef180c40e03dc506", "timestamp": "", "source": "github", "line_count": 288, "max_line_length": 458, "avg_line_length": 40.40625, "alnum_prop": 0.6468161897396236, "repo_name": "mike-jumper/incubator-guacamole-website", "id": "014fba3cb458ce596049825d70678a2ea5924929", "size": "11637", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "doc/0.9.3/guacamole-ext/org/glyptodon/guacamole/net/auth/UserContext.html", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "12886" }, { "name": "HTML", "bytes": "37702" }, { "name": "JavaScript", "bytes": "439018" }, { "name": "Perl", "bytes": "2217" }, { "name": "Ruby", "bytes": "660" }, { "name": "Shell", "bytes": "4849" } ], "symlink_target": "" }
""" This is the implementation of the original paper: @article{bandt2002permutation, title={Permutation entropy: a natural complexity measure for time series}, author={Bandt, Christoph and Pompe, Bernd}, journal={Physical review letters}, volume={88}, number={17}, pages={174102}, year={2002}, publisher={APS} } """ import numpy as np from src.core.en_opt import Entropy from src.core.report import PermutationEntropyReport class PermutationEntropy(Entropy): report_cls = PermutationEntropyReport @staticmethod def extract_pattern(seq): """ Extraction happens due to the following rule: if the sequence contains repeating elements then all repeating elements get the same rank (order number). For example: [5,4,-1,5] is reflected as a pattern [2,1,0,2] This is implemented according to: @article{bian2012modified, title={Modified permutation-entropy analysis of heartbeat dynamics}, author={Bian, Chunhua and Qin, Chang and Ma, Qianli DY and Shen, Qinghong}, journal={Physical Review E}, volume={85}, number={2}, pages={021906}, year={2012}, publisher={APS} } :param seq: sequence with numbers :return: a tuple with indexes """ res = tuple(np.argsort(seq)) if len(set(seq)) == len(seq): return res # there are duplicates value_to_id = {} new_id = 0 for el in sorted(seq): try: value_to_id[el] except KeyError: value_to_id[el] = new_id new_id += 1 else: pass return tuple(value_to_id[el] for el in seq) @staticmethod def collect_pattern_frequency(seq, size, stride): patterns = [] counts = [] stride = 1 if stride is None else stride for idx in range(len(seq)): i = idx acc_seq = [] while True: acc_seq.append(seq[i]) i += stride if i >= len(seq) or len(acc_seq) == size: break if len(acc_seq) != size: break current_pattern = PermutationEntropy.extract_pattern(acc_seq) try: position = patterns.index(current_pattern) except ValueError: patterns.append(current_pattern) counts.append(1) else: counts[position] += 1 return np.array(counts) / sum(counts), np.array(patterns) @staticmethod def calculate(m, seq, stride): frequences, mapping = PermutationEntropy.collect_pattern_frequency(seq, m, stride) return -1 * np.dot(frequences, np.log2(frequences)) @staticmethod def normalize_series(series, n): """ calculating h small :return: normalized series """ return np.array(series) * (1 / (n - 1)) @classmethod def prepare_calculate_windowed(cls, m, file_name, use_threshold, threshold_value, window_size=None, step_size=None, calculation_type=None, dev_coef_value=None, normalize=False, stride_size=None): if not cls.report_cls: raise NotImplementedError('Any Entropy should have its own report type') res_report = cls.report_cls() res_report.set_file_name(file_name) res_report.set_dimension(m) try: seq_list, average_rr_list, r_val_list, seq_len = Entropy.prepare_windows_calculation( file_name, calculation_type=calculation_type, dev_coef_value=dev_coef_value, use_threshold=use_threshold, threshold_value=threshold_value, window_size=window_size, step_size=step_size) en_results = [] for i in range(len(seq_list)): calc_kwargs = dict(m=m, seq=seq_list[i], stride=stride_size) en_results.append(cls.calculate(**calc_kwargs)) except (ValueError, AssertionError): res_report.set_error("Error! For file {}".format(file_name)) return res_report res_report.set_seq_len(seq_len) res_report.set_window_size(window_size) res_report.set_step_size(step_size) res_report.set_avg_rr(average_rr_list) res_report.set_result_values(en_results) res_report.set_stride_value(1 if stride_size is None else stride_size) if normalize: res_report.set_normalized_values(PermutationEntropy.normalize_series(en_results, m)) return res_report
{ "content_hash": "bf2b7ff2a04b3564f238a18e87a621b5", "timestamp": "", "source": "github", "line_count": 142, "max_line_length": 97, "avg_line_length": 34.16197183098591, "alnum_prop": 0.5644197072768501, "repo_name": "demid5111/approximate-enthropy", "id": "461100bdcff1fd7397dab50ca43b80c4a715a495", "size": "4851", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/core/permen.py", "mode": "33188", "license": "mit", "language": [ { "name": "Batchfile", "bytes": "165" }, { "name": "Python", "bytes": "161489" } ], "symlink_target": "" }
package org.m4ver1k.scheduler.service; import static org.quartz.CronScheduleBuilder.cronSchedule; import static org.quartz.TriggerBuilder.newTrigger; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.m4ver1k.scheduler.core.FrequencyType; import org.m4ver1k.scheduler.core.JobDTO; import org.m4ver1k.scheduler.core.SimpleJob; import org.quartz.JobDetail; import org.quartz.JobKey; import org.quartz.Scheduler; import org.quartz.SchedulerException; import org.quartz.Trigger; import org.quartz.impl.matchers.GroupMatcher; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean; import org.springframework.stereotype.Service; @Service public class JobService { @Autowired private Scheduler scheduler; public void addJob(String name,String command,String directory,FrequencyType feqType,String feqValue) throws SchedulerException { MethodInvokingJobDetailFactoryBean jobDetailfactory = new MethodInvokingJobDetailFactoryBean(); jobDetailfactory.setTargetObject(new SimpleJob(command,directory)); jobDetailfactory.setTargetMethod("execute"); jobDetailfactory.setName(name); jobDetailfactory.setConcurrent(false); try { jobDetailfactory.afterPropertiesSet(); } catch (ClassNotFoundException | NoSuchMethodException e) { e.printStackTrace(); } String cronExpression="* 0/30 * * * *"; if(feqType.equals(FrequencyType.MIN)){ cronExpression="0 0/"+feqValue+" * * * ?"; }else if(feqType.equals(FrequencyType.HOUR)){ cronExpression="0 0 0/"+feqValue+" * * ?"; }else if(feqType.equals(FrequencyType.DAY)){ cronExpression="0 0 0 * * ?"; }else if(feqType.equals(FrequencyType.DAY_OF_MONTH)){ cronExpression="0 0 0 "+feqValue+" * ?"; }else if(feqType.equals(FrequencyType.DAY_OF_WEEK)){ cronExpression="0 0 0 * * "+feqValue; } Trigger trigger = newTrigger(). withIdentity("tr-"+name,"group1") .startNow() .withSchedule(cronSchedule(cronExpression)) .build(); try { scheduler.scheduleJob((JobDetail)jobDetailfactory.getObject(), trigger); } catch (SchedulerException e) { System.out.println("JobService.addJob() Job Exisit with name - "+name); throw e; } } public List<JobDTO> listAllJobs() throws SchedulerException{ List<JobDTO> jobList = new ArrayList<>(); for (String groupName : scheduler.getJobGroupNames()) { for (JobKey jobKey : scheduler.getJobKeys(GroupMatcher.jobGroupEquals(groupName))) { String jobName = jobKey.getName(); String jobGroup = jobKey.getGroup(); @SuppressWarnings("unchecked") List<Trigger> triggers = (List<Trigger>) scheduler.getTriggersOfJob(jobKey); Date nextFireTime = triggers.get(0).getNextFireTime(); System.out.println("[jobName] : " + jobName + " [groupName] : " + jobGroup + " - " + nextFireTime); jobList.add(new JobDTO(jobName, jobGroup, nextFireTime.toString())); } } return jobList; } }
{ "content_hash": "e21d4e18e924a0b02c63b3984862bf2d", "timestamp": "", "source": "github", "line_count": 95, "max_line_length": 130, "avg_line_length": 32, "alnum_prop": 0.7332236842105263, "repo_name": "m4ver1k/scheduler", "id": "35d323d442346235b0afdb8d63bdbd5ef9b6dc2f", "size": "3040", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Scheduler/src/main/java/org/m4ver1k/scheduler/service/JobService.java", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "229388" }, { "name": "HTML", "bytes": "134717" }, { "name": "Java", "bytes": "9830" }, { "name": "JavaScript", "bytes": "661565" }, { "name": "PowerShell", "bytes": "468" }, { "name": "Shell", "bytes": "1532" } ], "symlink_target": "" }
// Type definitions for bull 3.3 // Project: https://github.com/OptimalBits/bull // Definitions by: Bruno Grieder <https://github.com/bgrieder> // Cameron Crothers <https://github.com/JProgrammer> // Marshall Cottrell <https://github.com/marshall007> // Weeco <https://github.com/weeco> // Gabriel Terwesten <https://github.com/blaugold> // Oleg Repin <https://github.com/iamolegga> // David Koblas <https://github.com/koblas> // Bond Akinmade <https://github.com/bondz> // Wuha Team <https://github.com/wuha-team> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 import * as Redis from "ioredis"; import * as Promise from "bluebird"; /** * This is the Queue constructor. * It creates a new Queue that is persisted in Redis. * Everytime the same queue is instantiated it tries to process all the old jobs that may exist from a previous unfinished session. */ declare const Bull: { (queueName: string, opts?: Bull.QueueOptions): Bull.Queue; (queueName: string, url?: string): Bull.Queue; // tslint:disable-line unified-signatures new (queueName: string, opts?: Bull.QueueOptions): Bull.Queue; new (queueName: string, url?: string): Bull.Queue; // tslint:disable-line unified-signatures }; declare namespace Bull { interface RateLimiter { /** Max numbers of jobs processed */ max: number; /** Per duration in milliseconds */ duration: number; } interface QueueOptions { /** * Options passed directly to the `ioredis` constructor */ redis?: Redis.RedisOptions; /** * When specified, the `Queue` will use this function to create new `ioredis` client connections. * This is useful if you want to re-use connections. */ createClient?(type: 'client' | 'subscriber' | 'bclient', redisOpts?: Redis.RedisOptions): Redis.Redis; /** * Prefix to use for all redis keys */ prefix?: string; settings?: AdvancedSettings; limiter?: RateLimiter; defaultJobOptions?: JobOptions; } interface AdvancedSettings { /** * Key expiration time for job locks */ lockDuration?: number; /** * How often check for stalled jobs (use 0 for never checking) */ stalledInterval?: number; /** * Max amount of times a stalled job will be re-processed */ maxStalledCount?: number; /** * Poll interval for delayed jobs and added jobs */ guardInterval?: number; /** * Delay before processing next job in case of internal error */ retryProcessDelay?: number; /** * Define a custom backoff strategy */ backoffStrategies?: { [key: string]: (attemptsMade: number, err: typeof Error) => number; }; } type DoneCallback = (error?: Error | null, value?: any) => void; type JobId = number | string; interface Job<T = any> { id: JobId; /** * The custom data passed when the job was created */ data: T; /** * How many attempts where made to run this job */ attemptsMade: number; /** * Report progress on a job */ progress(value: any): Promise<void>; /** * Returns a promise resolving to the current job's status. * Please take note that the implementation of this method is not very efficient, nor is * it atomic. If your queue does have a very large quantity of jobs, you may want to * avoid using this method. */ getState(): Promise<JobStatus>; /** * Update a specific job's data. Promise resolves when the job has been updated. */ update(data: any): Promise<void>; /** * Removes a job from the queue and from any lists it may be included in. * The returned promise resolves when the job has been removed. */ remove(): Promise<void>; /** * Re-run a job that has failed. The returned promise resolves when the job * has been scheduled for retry. */ retry(): Promise<void>; /** * Returns a promise that resolves to the returned data when the job has been finished. * TODO: Add a watchdog to check if the job has finished periodically. * since pubsub does not give any guarantees. */ finished(): Promise<any>; /** * Promotes a job that is currently "delayed" to the "waiting" state and executed as soon as possible. */ promote(): Promise<void>; /** * The lock id of the job */ lockKey(): string; /** * Releases the lock on the job. Only locks owned by the queue instance can be released. */ releaseLock(): Promise<void>; /** * Takes a lock for this job so that no other queue worker can process it at the same time. */ takeLock(): Promise<number | false>; } type JobStatus = 'completed' | 'waiting' | 'active' | 'delayed' | 'failed'; interface BackoffOptions { /** * Backoff type, which can be either `fixed` or `exponential` */ type: string; /** * Backoff delay, in milliseconds */ delay?: number; } interface RepeatOptions { /** * Timezone */ tz?: string; /** * End date when the repeat job should stop repeating */ endDate?: Date | string | number; /** * Number of times the job should repeat at max. */ limit?: number; } interface CronRepeatOptions extends RepeatOptions { /** * Cron pattern specifying when the job should execute */ cron: string; } interface EveryRepeatOptions extends RepeatOptions { /** * Repeat every millis (cron setting cannot be used together with this setting.) */ every: number; } interface JobOptions { /** * Optional priority value. ranges from 1 (highest priority) to MAX_INT (lowest priority). * Note that using priorities has a slight impact on performance, so do not use it if not required */ priority?: number; /** * An amount of miliseconds to wait until this job can be processed. * Note that for accurate delays, both server and clients should have their clocks synchronized. [optional] */ delay?: number; /** * The total number of attempts to try the job until it completes */ attempts?: number; /** * Repeat job according to a cron specification */ repeat?: CronRepeatOptions | EveryRepeatOptions; /** * Backoff setting for automatic retries if the job fails */ backoff?: number | BackoffOptions; /** * A boolean which, if true, adds the job to the right * of the queue instead of the left (default false) */ lifo?: boolean; /** * The number of milliseconds after which the job should be fail with a timeout error */ timeout?: number; /** * Override the job ID - by default, the job ID is a unique * integer, but you can use this setting to override it. * If you use this option, it is up to you to ensure the * jobId is unique. If you attempt to add a job with an id that * already exists, it will not be added. */ jobId?: JobId; /** * A boolean which, if true, removes the job when it successfully completes. * Default behavior is to keep the job in the completed set. */ removeOnComplete?: boolean; /** * A boolean which, if true, removes the job when it fails after all attempts * Default behavior is to keep the job in the completed set. */ removeOnFail?: boolean; } interface JobCounts { active: number; completed: number; failed: number; delayed: number; waiting: number; } interface JobInformation { key: string; name: string; id?: string; endDate?: number; tz?: string; cron: string; next: number; } interface Queue<T = any> { /** * Returns a promise that resolves when Redis is connected and the queue is ready to accept jobs. * This replaces the `ready` event emitted on Queue in previous verisons. */ isReady(): Promise<this>; /** * Defines a processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * * The done callback can be called with an Error instance, to signal that the job did not complete successfully, * or with a result as second argument as second argument (e.g.: done(null, result);) when the job is successful. * Errors will be passed as a second argument to the "failed" event; * results, as a second argument to the "completed" event. */ process(callback: (job: Job<T>, done: DoneCallback) => void): void; /** * Defines a processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * The callback can also be defined as the string path to a module * exporting the callback function. Using a path has several advantages: * - The process is sandboxed so if it crashes it does not affect the worker. * - You can run blocking code without affecting the queue (jobs will not stall). * - Much better utilization of multi-core CPUs. * - Less connections to redis. * * A promise must be returned to signal job completion. * If the promise is rejected, the error will be passed as a second argument to the "failed" event. * If it is resolved, its value will be the "completed" event's second argument. */ process(callback: ((job: Job<T>) => void) | string): Promise<any>; /** * Defines a processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * The callback can also be defined as the string path to a module * exporting the callback function. Using a path has several advantages: * - The process is sandboxed so if it crashes it does not affect the worker. * - You can run blocking code without affecting the queue (jobs will not stall). * - Much better utilization of multi-core CPUs. * - Less connections to redis. * * A promise must be returned to signal job completion. * If the promise is rejected, the error will be passed as a second argument to the "failed" event. * If it is resolved, its value will be the "completed" event's second argument. * * @param concurrency Bull will then call you handler in parallel respecting this max number. */ process(concurrency: number, callback: ((job: Job<T>) => void) | string): Promise<any>; /** * Defines a processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * * The done callback can be called with an Error instance, to signal that the job did not complete successfully, * or with a result as second argument as second argument (e.g.: done(null, result);) when the job is successful. * Errors will be passed as a second argument to the "failed" event; * results, as a second argument to the "completed" event. * * @param concurrency Bull will then call you handler in parallel respecting this max number. */ process(concurrency: number, callback: (job: Job<T>, done: DoneCallback) => void): void; /** * Defines a named processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * The callback can also be defined as the string path to a module * exporting the callback function. Using a path has several advantages: * - The process is sandboxed so if it crashes it does not affect the worker. * - You can run blocking code without affecting the queue (jobs will not stall). * - Much better utilization of multi-core CPUs. * - Less connections to redis. * * A promise must be returned to signal job completion. * If the promise is rejected, the error will be passed as a second argument to the "failed" event. * If it is resolved, its value will be the "completed" event's second argument. * * @param name Bull will only call the handler if the job name matches */ // tslint:disable-next-line:unified-signatures process(name: string, callback: ((job: Job<T>) => void) | string): Promise<any>; /** * Defines a processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * * The done callback can be called with an Error instance, to signal that the job did not complete successfully, * or with a result as second argument as second argument (e.g.: done(null, result);) when the job is successful. * Errors will be passed as a second argument to the "failed" event; * results, as a second argument to the "completed" event. * * @param name Bull will only call the handler if the job name matches */ // tslint:disable-next-line:unified-signatures process(name: string, callback: (job: Job<T>, done: DoneCallback) => void): void; /** * Defines a named processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * The callback can also be defined as the string path to a module * exporting the callback function. Using a path has several advantages: * - The process is sandboxed so if it crashes it does not affect the worker. * - You can run blocking code without affecting the queue (jobs will not stall). * - Much better utilization of multi-core CPUs. * - Less connections to redis. * * A promise must be returned to signal job completion. * If the promise is rejected, the error will be passed as a second argument to the "failed" event. * If it is resolved, its value will be the "completed" event's second argument. * * @param name Bull will only call the handler if the job name matches * @param concurrency Bull will then call you handler in parallel respecting this max number. */ process(name: string, concurrency: number, callback: ((job: Job<T>) => void) | string): Promise<any>; /** * Defines a processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * * The done callback can be called with an Error instance, to signal that the job did not complete successfully, * or with a result as second argument as second argument (e.g.: done(null, result);) when the job is successful. * Errors will be passed as a second argument to the "failed" event; * results, as a second argument to the "completed" event. * * @param name Bull will only call the handler if the job name matches * @param concurrency Bull will then call you handler in parallel respecting this max number. */ process(name: string, concurrency: number, callback: (job: Job<T>, done: DoneCallback) => void): void; /** * Creates a new job and adds it to the queue. * If the queue is empty the job will be executed directly, * otherwise it will be placed in the queue and executed as soon as possible. */ add(data: T, opts?: JobOptions): Promise<Job<T>>; /** * Creates a new named job and adds it to the queue. * If the queue is empty the job will be executed directly, * otherwise it will be placed in the queue and executed as soon as possible. */ add(name: string, data: T, opts?: JobOptions): Promise<Job<T>>; /** * Returns a promise that resolves when the queue is paused. * * A paused queue will not process new jobs until resumed, but current jobs being processed will continue until * they are finalized. The pause can be either global or local. If global, all workers in all queue instances * for a given queue will be paused. If local, just this worker will stop processing new jobs after the current * lock expires. This can be useful to stop a worker from taking new jobs prior to shutting down. * * Pausing a queue that is already paused does nothing. */ pause(isLocal?: boolean): Promise<void>; /** * Returns a promise that resolves when the queue is resumed after being paused. * * The resume can be either local or global. If global, all workers in all queue instances for a given queue * will be resumed. If local, only this worker will be resumed. Note that resuming a queue globally will not * resume workers that have been paused locally; for those, resume(true) must be called directly on their * instances. * * Resuming a queue that is not paused does nothing. */ resume(isLocal?: boolean): Promise<void>; /** * Returns a promise that returns the number of jobs in the queue, waiting or paused. * Since there may be other processes adding or processing jobs, this value may be true only for a very small amount of time. */ count(): Promise<number>; /** * Empties a queue deleting all the input lists and associated jobs. */ empty(): Promise<void>; /** * Closes the underlying redis client. Use this to perform a graceful shutdown. * * `close` can be called from anywhere, with one caveat: * if called from within a job handler the queue won't close until after the job has been processed */ close(): Promise<void>; /** * Returns a promise that will return the job instance associated with the jobId parameter. * If the specified job cannot be located, the promise callback parameter will be set to null. */ getJob(jobId: JobId): Promise<Job<T> | null>; /** * Returns a promise that will return an array with the waiting jobs between start and end. */ getWaiting(start?: number, end?: number): Promise<Array<Job<T>>>; /** * Returns a promise that will return an array with the active jobs between start and end. */ getActive(start?: number, end?: number): Promise<Array<Job<T>>>; /** * Returns a promise that will return an array with the delayed jobs between start and end. */ getDelayed(start?: number, end?: number): Promise<Array<Job<T>>>; /** * Returns a promise that will return an array with the completed jobs between start and end. */ getCompleted(start?: number, end?: number): Promise<Array<Job<T>>>; /** * Returns a promise that will return an array with the failed jobs between start and end. */ getFailed(start?: number, end?: number): Promise<Array<Job<T>>>; /** * Returns JobInformation of repeatable jobs (ordered descending). Provide a start and/or an end * index to limit the number of results. Start defaults to 0, end to -1 and asc to false. */ getRepeatableJobs(start?: number, end?: number, asc?: boolean): Promise<JobInformation[]>; /** * ??? */ nextRepeatableJob(name: string, data: any, opts: JobOptions): Promise<Job<T>>; /** * Removes a given repeatable job. The RepeatOptions and JobId needs to be the same as the ones * used for the job when it was added. */ removeRepeatable(repeat: (CronRepeatOptions | EveryRepeatOptions) & { jobId?: JobId }): Promise<void>; /** * Removes a given repeatable job. The RepeatOptions and JobId needs to be the same as the ones * used for the job when it was added. * * name: The name of the to be removed job */ removeRepeatable(name: string, repeat: (CronRepeatOptions | EveryRepeatOptions) & { jobId?: JobId }): Promise<void>; /** * Returns a promise that will return an array of job instances of the given types. * Optional parameters for range and ordering are provided. */ getJobs(types: string[], start?: number, end?: number, asc?: boolean): Promise<Job[]>; /** * Returns a promise that resolves with the job counts for the given queue. */ getJobCounts(): Promise<JobCounts>; /** * Returns a promise that resolves with the quantity of completed jobs. */ getCompletedCount(): Promise<number>; /** * Returns a promise that resolves with the quantity of failed jobs. */ getFailedCount(): Promise<number>; /** * Returns a promise that resolves with the quantity of delayed jobs. */ getDelayedCount(): Promise<number>; /** * Returns a promise that resolves with the quantity of waiting jobs. */ getWaitingCount(): Promise<number>; /** * Returns a promise that resolves with the quantity of paused jobs. */ getPausedCount(): Promise<number>; /** * Returns a promise that resolves with the quantity of active jobs. */ getActiveCount(): Promise<number>; /** * Returns a promise that resolves to the quantity of repeatable jobs. */ getRepeatableCount(): Promise<number>; /** * Tells the queue remove all jobs created outside of a grace period in milliseconds. * You can clean the jobs with the following states: completed, waiting, active, delayed, and failed. * @param grace Grace period in milliseconds. * @param status Status of the job to clean. Values are completed, wait, active, delayed, and failed. Defaults to completed. * @param limit Maximum amount of jobs to clean per call. If not provided will clean all matching jobs. */ clean(grace: number, status?: JobStatus, limit?: number): Promise<Array<Job<T>>>; /** * Listens to queue events */ on(event: string, callback: (...args: any[]) => void): this; /** * An error occured */ on(event: 'error', callback: ErrorEventCallback): this; /** * A job has started. You can use `jobPromise.cancel()` to abort it */ on(event: 'active', callback: ActiveEventCallback<T>): this; /** * A job has been marked as stalled. * This is useful for debugging job workers that crash or pause the event loop. */ on(event: 'stalled', callback: StalledEventCallback<T>): this; /** * A job's progress was updated */ on(event: 'progress', callback: ProgressEventCallback<T>): this; /** * A job successfully completed with a `result` */ on(event: 'completed', callback: CompletedEventCallback<T>): this; /** * A job failed with `err` as the reason */ on(event: 'failed', callback: FailedEventCallback<T>): this; /** * The queue has been paused */ on(event: 'paused', callback: EventCallback): this; /** * The queue has been resumed */ on(event: 'resumed', callback: EventCallback): this; // tslint:disable-line unified-signatures /** * Old jobs have been cleaned from the queue. * `jobs` is an array of jobs that were removed, and `type` is the type of those jobs. * * @see Queue#clean() for details */ on(event: 'cleaned', callback: CleanedEventCallback<T>): this; } type EventCallback = () => void; type ErrorEventCallback = (error: Error) => void; interface JobPromise { /** * Abort this job */ cancel(): void; } type ActiveEventCallback<T = any> = (job: Job<T>, jobPromise?: JobPromise) => void; type StalledEventCallback<T = any> = (job: Job<T>) => void; type ProgressEventCallback<T = any> = (job: Job<T>, progress: any) => void; type CompletedEventCallback<T = any> = (job: Job<T>, result: any) => void; type FailedEventCallback<T = any> = (job: Job<T>, error: Error) => void; type CleanedEventCallback<T = any> = (jobs: Array<Job<T>>, status: JobStatus) => void; } export = Bull;
{ "content_hash": "efa30f7471e2ba05113f5b687e77731b", "timestamp": "", "source": "github", "line_count": 689, "max_line_length": 131, "avg_line_length": 35.568940493468794, "alnum_prop": 0.6518545721630554, "repo_name": "aaronryden/DefinitelyTyped", "id": "a11ae0257ab2f74b6faec85d3c0cb1b1a99a781b", "size": "24507", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "types/bull/index.d.ts", "mode": "33188", "license": "mit", "language": [], "symlink_target": "" }
export class LivetickerComment { constructor(public content: string, public timestamp: number, public username: string, public profilePicture: string) { } }
{ "content_hash": "e9aabbe79516a027ddecccd7a838b495", "timestamp": "", "source": "github", "line_count": 5, "max_line_length": 123, "avg_line_length": 33.2, "alnum_prop": 0.7530120481927711, "repo_name": "sunilson/My-Ticker-Android", "id": "d21dc998135ddefbcb208c53d3c0aedd99c96a12", "size": "166", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Angular App/src/app/models/livetickerComment.ts", "mode": "33188", "license": "mit", "language": [ { "name": "Java", "bytes": "358400" } ], "symlink_target": "" }
package main import ( "os" "fmt" "strings" "github.com/thoj/go-ircevent" ) var server string var channel = "#botsex" var myNick = "gonbot" var con *irc.Connection var goTime = false var admin = false var op = false func main() { args := os.Args if len(args) == 2 && args[1] == "-h" { fmt.Println("Usage: ceti-eel <server.com:port> <#channel> <nick>") os.Exit(0) } if len(args) != 4 { fmt.Println("Usage: ceti-eel <server.com:port> <#channel> <nick>") os.Exit(1) } server = args[1] channel = args[2] myNick = args[3] //Make a connection, "nick", "user" con = irc.IRC(myNick, myNick) err := con.Connect(server) if err != nil { fmt.Println("Failed connecting") return } con.AddCallback("001", connectionMade) con.AddCallback("PRIVMSG", newPrivmsg) con.AddCallback("MODE", modeChanged) con.AddCallback("353", gotNames) con.Loop() } //Send a message to the server requesting the list of everyone in the channel func checkNames() { con.SendRaw("NAMES " + channel) } func changeUsersMode(nick string, mode string) { con.SendRaw("MODE " + channel + " " + mode + " " + nick) } //Connection to the server is successful, so let's join the channel func connectionMade(e *irc.Event) { con.Join(channel) } //Parrot back a message if it begins with <name>: func newPrivmsg(e *irc.Event) { msg := e.Message() if len(msg) > len(myNick) && msg[0:len(myNick)] == myNick { con.Privmsg(channel, msg[len(myNick)+2:]) } } func modeChanged(e *irc.Event) { //Check if our op/admin priveleges changed if len(e.Arguments) >= 3 && e.Arguments[0] == channel { adding := true gotOp := false gotAdmin := false wereInTheList := false //Note if modes are being added or removed if e.Arguments[1][0] == '-' { adding = false } //Check if op was changed for _, letter := range e.Arguments[1][1:] { if letter == 'o' { gotOp = true } } //Check if admin was changed for _, letter := range e.Arguments[1][1:] { if letter == 'a' { gotAdmin = true } } //Check if we're in the list for _, name := range e.Arguments[2:] { if name == myNick { wereInTheList = true } } if gotOp && wereInTheList { //We got op, let's take note of this op = adding fmt.Print("op:") fmt.Println(adding) } if gotAdmin && wereInTheList { //We got admin, let's take note of this admin = adding fmt.Print("admin:") fmt.Println(adding) } checkNames() } } func gotNames(e *irc.Event) { names := strings.Fields(e.Message()) banish := true //If we're admin and it's not go time, then let's make it go time if admin { if !goTime { goTime, banish = true, false } } else if op { //Else if we're op and there's not an admin, and it's not go time, //then let's make it go time theresAnAdmin := false for _, name := range names { if name[0] == '!' { theresAnAdmin = true } } if !theresAnAdmin && !goTime { goTime, banish = true, false } else if theresAnAdmin && goTime { //If there's an admin and we have op and it's go time, //it's not actually go time :( goTime = false } } else { //We're not op or admin. It's not go time. goTime = false } if goTime { takeControl(names, banish) } } //De-op and de-admin everyone func takeControl(names []string, banish bool) { for _, name := range names { if name[1:] != myNick && name[1:] != "dgonyeo" { if name[0] == '!' { changeUsersMode(name[1:], "-a") changeUsersMode(name[1:], "-o") if banish { changeUsersMode(name[1:], "+b") con.SendRaw("KICK " + channel + " " + name[1:]) } } if name[0] == '@' { changeUsersMode(name[1:], "-o") if banish { changeUsersMode(name[1:], "+b") con.SendRaw("KICK " + channel + " " + name[1:]) } } } } }
{ "content_hash": "aa5b5790a7ddb7656821728bbacb9691", "timestamp": "", "source": "github", "line_count": 170, "max_line_length": 77, "avg_line_length": 27.023529411764706, "alnum_prop": 0.5034828036569439, "repo_name": "dgonyeo/ceti-eel", "id": "a4b1a7a563b3df1a2a7dc077b76c3b5ae25693e7", "size": "4594", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "ceti-eel.go", "mode": "33188", "license": "mit", "language": [ { "name": "Go", "bytes": "4594" } ], "symlink_target": "" }
Mobidebt::Application.config.session_store :cookie_store, key: '_mobidebt_session'
{ "content_hash": "8e7aab7d7ac5572c5926742fbd105c2c", "timestamp": "", "source": "github", "line_count": 1, "max_line_length": 82, "avg_line_length": 83, "alnum_prop": 0.7951807228915663, "repo_name": "jvanbaarsen/mobidebt", "id": "0b995b6e2c5f245a1a19e31fe772d9b6879b0826", "size": "144", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "config/initializers/session_store.rb", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "54942" }, { "name": "JavaScript", "bytes": "659" }, { "name": "Ruby", "bytes": "44188" } ], "symlink_target": "" }
namespace boost { #ifndef __BORLANDC__ namespace detail { class alignment_dummy; typedef void (*function_ptr)(); typedef int (alignment_dummy::*member_ptr); typedef int (alignment_dummy::*member_function_ptr)(); #define BOOST_TT_ALIGNMENT_TYPES BOOST_PP_TUPLE_TO_LIST( \ 11, ( \ char, short, int, long, float, double, long double \ , void*, function_ptr, member_ptr, member_function_ptr)) #define BOOST_TT_CHOOSE_MIN_ALIGNMENT(R,P,I,T) \ typename mpl::if_c< \ alignment_of<T>::value <= target, T, char>::type BOOST_PP_CAT(t,I); #define BOOST_TT_CHOOSE_T(R,P,I,T) T BOOST_PP_CAT(t,I); template <std::size_t target> union lower_alignment { BOOST_PP_LIST_FOR_EACH_I( BOOST_TT_CHOOSE_MIN_ALIGNMENT , ignored , BOOST_TT_ALIGNMENT_TYPES ) }; union max_align { BOOST_PP_LIST_FOR_EACH_I( BOOST_TT_CHOOSE_T , ignored , BOOST_TT_ALIGNMENT_TYPES ) }; #undef BOOST_TT_ALIGNMENT_TYPES #undef BOOST_TT_CHOOSE_MIN_ALIGNMENT #undef BOOST_TT_CHOOSE_T template<int TAlign, int Align> struct is_aligned { BOOST_STATIC_CONSTANT(bool, value = (TAlign >= Align) & (TAlign % Align == 0) ); }; BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::max_align,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<1> ,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<2> ,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<4> ,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<8> ,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<10> ,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<16> ,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<32> ,true) } // namespace detail // This alignment method originally due to Brian Parker, implemented by David // Abrahams, and then ported here by Doug Gregor. template <int Align> class type_with_alignment { typedef detail::lower_alignment<Align> t1; typedef typename mpl::if_c< ::boost::detail::is_aligned< ::boost::alignment_of<t1>::value,Align >::value , t1 , detail::max_align >::type align_t; BOOST_STATIC_CONSTANT(std::size_t, found = alignment_of<align_t>::value); #ifndef __BORLANDC__ BOOST_STATIC_ASSERT((int)found >= Align); BOOST_STATIC_ASSERT(found % Align == 0); #else BOOST_STATIC_ASSERT(::boost::type_with_alignment<Align>::found >= Align); BOOST_STATIC_ASSERT(::boost::type_with_alignment<Align>::found % Align == 0); #endif public: typedef align_t type; }; #else // // Borland specific version, we have this for two reasons: // 1) The version above doesn't always compile (with the new test cases for example) // 2) Because of Borlands #pragma option we can create types with alignments that are // greater that the largest aligned builtin type. namespace align{ #pragma option push -a16 struct a2{ short s; }; struct a4{ int s; }; struct a8{ double s; }; struct a16{ long double s; }; #pragma option pop } namespace detail { BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a2,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a4,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a8,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a16,true) } template <std::size_t N> struct type_with_alignment { // We should never get to here, but if we do use the maximally // aligned type: // BOOST_STATIC_ASSERT(0); typedef align::a16 type; }; template <> struct type_with_alignment<1>{ typedef char type; }; template <> struct type_with_alignment<2>{ typedef align::a2 type; }; template <> struct type_with_alignment<4>{ typedef align::a4 type; }; template <> struct type_with_alignment<8>{ typedef align::a8 type; }; template <> struct type_with_alignment<16>{ typedef align::a16 type; }; #endif } // namespace boost #ifdef BOOST_MSVC # pragma warning(pop) #endif #include "boost/type_traits/detail/bool_trait_undef.hpp" #endif // BOOST_TT_TYPE_WITH_ALIGNMENT_INCLUDED
{ "content_hash": "f63e3d67617f547df9e1f093aee61cbe", "timestamp": "", "source": "github", "line_count": 140, "max_line_length": 86, "avg_line_length": 30.192857142857143, "alnum_prop": 0.6810977052282943, "repo_name": "OLR-xray/OLR-3.0", "id": "a9cabdb7c281220e033ad6504dca66f685012712", "size": "5176", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "src/3rd party/boost/boost/type_traits/type_with_alignment.hpp", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Assembly", "bytes": "24445" }, { "name": "Batchfile", "bytes": "25756" }, { "name": "C", "bytes": "24938895" }, { "name": "C++", "bytes": "47400139" }, { "name": "CMake", "bytes": "6042" }, { "name": "Cuda", "bytes": "36172" }, { "name": "Groff", "bytes": "287360" }, { "name": "HTML", "bytes": "67830" }, { "name": "MAXScript", "bytes": "975" }, { "name": "Makefile", "bytes": "16965" }, { "name": "Objective-C", "bytes": "181404" }, { "name": "Pascal", "bytes": "2978785" }, { "name": "Perl", "bytes": "13337" }, { "name": "PostScript", "bytes": "10774" }, { "name": "Python", "bytes": "5517" }, { "name": "Shell", "bytes": "956624" }, { "name": "TeX", "bytes": "762124" }, { "name": "xBase", "bytes": "151778" } ], "symlink_target": "" }
using Autofac; using Autofac.Core.Lifetime; using System; using System.Collections.Generic; using System.Linq; using Prolix.Ioc; namespace Prolix.Ioc.Autofac { /// <summary> /// Autofac generic Ioc Container /// </summary> public class AutofacResolver : Resolver { ILifetimeScope _container; readonly ContainerBuilder _builder; public AutofacResolver() { _builder = new ContainerBuilder(); } AutofacResolver(ILifetimeScope container) { _container = container ?? throw new ArgumentNullException(nameof(container)); } ~AutofacResolver() { Dispose(false); } public override void Register<T>(DepedencyLifetime lifetime = DepedencyLifetime.PerDependency) { switch (lifetime) { case DepedencyLifetime.PerDependency: _builder.RegisterType<T>().InstancePerDependency(); break; case DepedencyLifetime.PerLifetime: _builder.RegisterType<T>().InstancePerLifetimeScope(); break; default: throw new ArgumentOutOfRangeException(nameof(lifetime)); } } public override void Register<T>(T instance, DepedencyLifetime lifetime = DepedencyLifetime.PerDependency) { switch (lifetime) { case DepedencyLifetime.PerDependency: _builder.RegisterInstance(instance).InstancePerDependency(); break; case DepedencyLifetime.PerLifetime: _builder.RegisterInstance(instance).SingleInstance(); break; default: throw new ArgumentOutOfRangeException(nameof(lifetime)); } } public override void Register<T>(Func<T> builder) { _builder .Register(context => builder()) .InstancePerLifetimeScope(); } public override void Register<TC, TA>(DepedencyLifetime lifetime = DepedencyLifetime.PerDependency) { switch (lifetime) { case DepedencyLifetime.PerDependency: _builder.RegisterType<TC>().As<TA>().InstancePerDependency(); break; case DepedencyLifetime.PerLifetime: _builder.RegisterType<TC>().As<TA>().InstancePerLifetimeScope(); break; default: throw new ArgumentOutOfRangeException(nameof(lifetime)); } } public override void Register(Type concreteType, Type abstractType, DepedencyLifetime lifetime = DepedencyLifetime.PerDependency, string name = null) { switch (lifetime) { case DepedencyLifetime.PerDependency: if (string.IsNullOrWhiteSpace(name)) _builder.RegisterType(concreteType).As(abstractType).InstancePerDependency(); else _builder.RegisterType(concreteType).Named(name, abstractType).As(abstractType).InstancePerDependency(); break; case DepedencyLifetime.PerLifetime: if (string.IsNullOrWhiteSpace(name)) _builder.RegisterType(concreteType).As(abstractType).InstancePerLifetimeScope(); else _builder.RegisterType(concreteType).Named(name, abstractType).As(abstractType).InstancePerLifetimeScope(); break; default: throw new ArgumentOutOfRangeException(nameof(lifetime)); } } public override void Register(Type concreteType, DepedencyLifetime lifetime = DepedencyLifetime.PerDependency) { switch (lifetime) { case DepedencyLifetime.PerDependency: _builder.RegisterType(concreteType).InstancePerDependency(); break; case DepedencyLifetime.PerLifetime: _builder.RegisterType(concreteType).InstancePerLifetimeScope(); break; default: throw new ArgumentOutOfRangeException(nameof(lifetime)); } } public override void Register(Type abstractType, Func<object> builder) { _builder .Register(context => builder()) .As(abstractType) .InstancePerLifetimeScope(); } public override T Resolve<T>() { if (!IsRegistered<T>()) return null; return _container.Resolve<T>(); } public override IEnumerable<T> ResolveAll<T>() { if (!IsRegistered<T>()) return Enumerable.Empty<T>(); var enumerableType = typeof(IEnumerable<T>); var all = _container.Resolve(enumerableType); return all as IEnumerable<T>; } public override object Resolve(Type abstractType) { if (!IsRegistered(abstractType)) return null; return _container.Resolve(abstractType); } public override IEnumerable<object> ResolveAll(Type abstractType) { var enumerableType = typeof(IEnumerable<>).MakeGenericType(abstractType); var all = _container.Resolve(enumerableType); return all as IEnumerable<object>; } public override bool IsRegistered<T>() { return _container.IsRegistered<T>(); } public override bool IsRegistered(Type abstractType) { return _container.IsRegistered(abstractType); } public override void Finish() { _container = _builder.Build(); } public override void Release() { _container?.Dispose(); } public override Resolver CreateChild() { var child = _container.BeginLifetimeScope(MatchingScopeLifetimeTags.RequestLifetimeScopeTag); return new AutofacResolver(child); } } }
{ "content_hash": "0aa36acecb1e44f8e32ad809bf491d87", "timestamp": "", "source": "github", "line_count": 190, "max_line_length": 157, "avg_line_length": 33.578947368421055, "alnum_prop": 0.5540752351097179, "repo_name": "wwdenis/wwa", "id": "f92ef688765cfaae36c9f26fcadea351777ac1c6", "size": "6506", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/Prolix.Ioc.Autofac/AutofacResolver.cs", "mode": "33188", "license": "mit", "language": [ { "name": "C#", "bytes": "412103" }, { "name": "TypeScript", "bytes": "49075" } ], "symlink_target": "" }
Write-Host "Copying README.md as index.md to Docs folder..." Copy-Item README.md -Destination Docs\index.md Write-Host "Writing index.md title..." $indexContent = Get-Content -Path "Docs\index.md" -Raw $indexContent = $indexContent -replace '\<\!--OVERVIEW--\>',"# Overview" Set-Content -Path "Docs\index.md" -Value $indexContent
{ "content_hash": "b0040d51b551663a1884c76d509b7578", "timestamp": "", "source": "github", "line_count": 7, "max_line_length": 72, "avg_line_length": 47.285714285714285, "alnum_prop": 0.7250755287009063, "repo_name": "melanchall/drywetmidi", "id": "928e4e46c718b86041db0839425c203d18ea2f76", "size": "333", "binary": false, "copies": "1", "ref": "refs/heads/develop", "path": "Resources/Scripts/Setup docs.ps1", "mode": "33188", "license": "mit", "language": [ { "name": "C", "bytes": "79632" }, { "name": "C#", "bytes": "6484646" }, { "name": "PowerShell", "bytes": "8465" } ], "symlink_target": "" }
'use strict'; exports.find = function(req, res, next){ req.query.email = req.query.email ? req.query.email : ''; req.query.hash = req.query.hash ? req.query.hash : ''; req.query.limit = req.query.limit ? parseInt(req.query.limit, null) : 20; req.query.page = req.query.page ? parseInt(req.query.page, null) : 1; req.query.sort = req.query.sort ? req.query.sort : '_id'; var filters = {}; if (req.query.email) { filters.email = new RegExp('^.*?'+ req.query.email +'.*$', 'i'); } if (req.query.name) { filters.name = new RegExp('^.*?'+ req.query.name +'.*$', 'i'); } req.app.db.models.Device.pagedFind({ filters: filters, keys: 'email hash', limit: req.query.limit, page: req.query.page, sort: req.query.sort }, function(err, results) { if (err) { return next(err); } if (req.xhr) { res.header('Cache-Control', 'no-cache, no-store, must-revalidate'); results.filters = req.query; res.send(results); } else { results.filters = req.query; res.render('admin/devices/index', { data: { results: escape(JSON.stringify(results)) } }); } }); }; exports.read = function(req, res, next){ req.app.db.models.Device.findById(req.params.id).exec(function(err, devices) { if (err) { return next(err); } if (req.xhr) { res.send(devices); } else { res.render('admin/devices/details', { data: { record: escape(JSON.stringify(devices)) } }); } }); }; exports.create = function(req, res, next){ var workflow = req.app.utility.workflow(req, res); workflow.on('validate', function() { if (!req.user.roles.admin.isMemberOf('root')) { workflow.outcome.errors.push('You may not create devices.'); return workflow.emit('response'); } if (!req.body.email) { workflow.outcome.errors.push('A email is required.'); return workflow.emit('response'); } if (!req.body.hash) { workflow.outcome.errors.push('A hash is required.'); return workflow.emit('response'); } workflow.emit('duplicatedevicesCheck'); }); workflow.on('duplicatedevicesCheck', function() { req.app.db.models.Device.findById(req.app.utility.slugify(req.body.email +' '+ req.body.hash)).exec(function(err, devices) { if (err) { return workflow.emit('exception', err); } if (devices) { workflow.outcome.errors.push('That devices+email is already taken.'); return workflow.emit('response'); } workflow.emit('createDevice'); }); }); workflow.on('createDevice', function() { var fieldsToSet = { _id: req.app.utility.slugify(req.body.email +' '+ req.body.hash), email: req.body.email, hash: req.body.hash }; req.app.db.models.Device.create(fieldsToSet, function(err, devices) { if (err) { return workflow.emit('exception', err); } workflow.outcome.record = devices; return workflow.emit('response'); }); }); workflow.emit('validate'); }; exports.update = function(req, res, next){ var workflow = req.app.utility.workflow(req, res); workflow.on('validate', function() { if (!req.user.roles.admin.isMemberOf('root')) { workflow.outcome.errors.push('You may not update devices.'); return workflow.emit('response'); } if (!req.body.email) { workflow.outcome.errfor.email = 'email'; return workflow.emit('response'); } if (!req.body.hash) { workflow.outcome.errfor.hash = 'required'; return workflow.emit('response'); } workflow.emit('patchDevice'); }); workflow.on('patchDevice', function() { var fieldsToSet = { email: req.body.email, hash: req.body.hash }; var options = { new: true }; req.app.db.models.Device.findByIdAndUpdate(req.params.id, fieldsToSet, options, function(err, devices) { if (err) { return workflow.emit('exception', err); } workflow.outcome.devices = devices; return workflow.emit('response'); }); }); workflow.emit('validate'); }; exports.delete = function(req, res, next){ var workflow = req.app.utility.workflow(req, res); workflow.on('validate', function() { if (!req.user.roles.admin.isMemberOf('root')) { workflow.outcome.errors.push('You may not delete devices.'); return workflow.emit('response'); } workflow.emit('deleteDevice'); }); workflow.on('deleteDevice', function(err) { req.app.db.models.Device.findByIdAndRemove(req.params.id, function(err, devices) { if (err) { return workflow.emit('exception', err); } workflow.emit('response'); }); }); workflow.emit('validate'); };
{ "content_hash": "13375e2a8bb7fce2bd07fc93ce32f62b", "timestamp": "", "source": "github", "line_count": 176, "max_line_length": 128, "avg_line_length": 26.943181818181817, "alnum_prop": 0.6102910164487558, "repo_name": "bertrandmartel/google-cross-client-node", "id": "5b9f2e73dcf5f2fba6319d3178dc57664a1fd8dd", "size": "4742", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "app/views/admin/log/index.js", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "8125" }, { "name": "HTML", "bytes": "58238" }, { "name": "JavaScript", "bytes": "263303" }, { "name": "Shell", "bytes": "1500" } ], "symlink_target": "" }
import json import unittest from unittest import mock from looker_sdk import error, models from looker_sdk.rtl import serialize from google.datacatalog_connectors.looker import scrape class MetadataScraperTest(unittest.TestCase): @mock.patch('google.datacatalog_connectors.looker.scrape' '.metadata_scraper.init31') def setUp(self, mock_client): self.__scraper = scrape.MetadataScraper('looker-credentials-file.ini') def test_constructor_should_set_instance_attributes(self): self.assertIsNotNone(self.__scraper.__dict__['_MetadataScraper__sdk']) def test_scrape_dashboard_should_return_object_on_success(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] dashboard_data = { 'id': 'dashboard-id', } sdk.dashboard.return_value = serialize.deserialize31( data=json.dumps(dashboard_data), structure=models.Dashboard) dashboard = self.__scraper.scrape_dashboard('dashboard-id') self.assertEqual('dashboard-id', dashboard.id) sdk.dashboard.assert_called_once() sdk.dashboard.assert_called_with(dashboard_id='dashboard-id') def test_scrape_dashboard_should_raise_sdk_error_on_failure(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] sdk.dashboard.side_effect = error.SDKError('SDK error') self.assertRaises(error.SDKError, self.__scraper.scrape_dashboard, 'dashboard-id') sdk.dashboard.assert_called_once() sdk.dashboard.assert_called_with(dashboard_id='dashboard-id') def test_scrape_all_dashboards_should_return_list(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] dashboard_data = { 'id': 'dashboard-id', 'title': 'A B C', 'space': { 'name': 'Test folder', 'parent_id': '', }, } sdk.search_dashboards.return_value = [ serialize.deserialize31(data=json.dumps(dashboard_data), structure=models.Dashboard) ] dashboards = self.__scraper.scrape_all_dashboards() self.assertEqual(1, len(dashboards)) self.assertEqual('dashboard-id', dashboards[0].id) sdk.search_dashboards.assert_called_once() sdk.search_dashboards.assert_called_with( fields='id,title,created_at,description,space,hidden,user_id,' 'view_count,favorite_count,last_accessed_at,last_viewed_at,' 'deleted,deleted_at,deleter_id,dashboard_elements') def test_scrape_dashboards_from_folder_should_return_list(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] dashboard_data = { 'id': 'dashboard-id', 'title': 'A B C', } sdk.search_dashboards.return_value = [ serialize.deserialize31(data=json.dumps(dashboard_data), structure=models.Dashboard) ] folder_data = { 'id': 'folder-id', 'name': 'Test folder', 'parent_id': '', } dashboards = self.__scraper.scrape_dashboards_from_folder( serialize.deserialize31(data=json.dumps(folder_data), structure=models.Folder)) self.assertEqual(1, len(dashboards)) self.assertEqual('dashboard-id', dashboards[0].id) sdk.search_dashboards.assert_called_once() sdk.search_dashboards.assert_called_with( space_id='folder-id', fields='id,title,created_at,description,space,hidden,user_id,' 'view_count,favorite_count,last_accessed_at,last_viewed_at,' 'deleted,deleted_at,deleter_id,dashboard_elements') def test_scrape_folder_should_return_object(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] folder_data = { 'id': 'folder-id', 'name': 'Test folder', 'parent_id': '', } sdk.folder.return_value = serialize.deserialize31( data=json.dumps(folder_data), structure=models.Folder) folder = self.__scraper.scrape_folder('folder-id') self.assertEqual('folder-id', folder.id) sdk.folder.assert_called_once() sdk.folder.assert_called_with( folder_id='folder-id', fields='id,name,parent_id,child_count,creator_id,dashboards,looks') def test_scrape_all_folders_should_return_list(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] folder_data = { 'id': 'folder-id', 'name': 'Folder name', 'parent_id': '', } sdk.search_folders.return_value = [ serialize.deserialize31(data=json.dumps(folder_data), structure=models.Folder) ] folders = self.__scraper.scrape_all_folders() self.assertEqual(1, len(folders)) self.assertEqual('folder-id', folders[0].id) sdk.search_folders.assert_called_once() sdk.search_folders.assert_called_with( fields='id,name,parent_id,child_count,creator_id') def test_scrape_top_level_folders_should_return_list(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] folder_data = { 'id': 'folder-id', 'name': 'Folder name', 'parent_id': '', } sdk.search_folders.return_value = [ serialize.deserialize31(data=json.dumps(folder_data), structure=models.Folder) ] folders = self.__scraper.scrape_top_level_folders() self.assertEqual(1, len(folders)) self.assertEqual('folder-id', folders[0].id) sdk.search_folders.assert_called_once() sdk.search_folders.assert_called_with( fields='id,name,parent_id,child_count,creator_id', parent_id='IS NULL') def test_scrape_child_folders_should_return_list(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] folder_data = { 'id': 'folder-id', 'name': 'Folder name', 'parent_id': '', } sdk.folder_children.return_value = [ serialize.deserialize31(data=json.dumps(folder_data), structure=models.Folder) ] parent_data = { 'id': 'parent-folder-id', 'name': 'Parent folder name', 'parent_id': '', } folders = self.__scraper.scrape_child_folders( serialize.deserialize31(data=json.dumps(parent_data), structure=models.Folder)) self.assertEqual(1, len(folders)) self.assertEqual('folder-id', folders[0].id) sdk.folder_children.assert_called_once() sdk.folder_children.assert_called_with( folder_id='parent-folder-id', fields='id,name,parent_id,child_count,creator_id') def test_scrape_look_should_return_object_on_success(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] look_data = { 'id': 123, } sdk.look.return_value = serialize.deserialize31( data=json.dumps(look_data), structure=models.Look) look = self.__scraper.scrape_look(123) self.assertEqual(123, look.id) sdk.look.assert_called_once() sdk.look.assert_called_with(look_id=123) def test_scrape_all_looks_should_return_list(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] look_data = { 'id': 123, 'title': 'A B C', 'space': { 'name': 'Test folder', 'parent_id': '', }, } sdk.search_looks.return_value = [ serialize.deserialize31(data=json.dumps(look_data), structure=models.Look) ] looks = self.__scraper.scrape_all_looks() self.assertEqual(1, len(looks)) self.assertEqual(123, looks[0].id) sdk.search_looks.assert_called_once() sdk.search_looks.assert_called_with( fields='id,title,created_at,updated_at,description,space,public,' 'user_id,last_updater_id,query_id,url,short_url,public_url,' 'excel_file_url,google_spreadsheet_formula,view_count,' 'favorite_count,last_accessed_at,last_viewed_at,deleted,' 'deleter_id') def test_scrape_looks_from_folder_should_return_list(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] look_data = { 'id': 123, 'title': 'A B C', } sdk.search_looks.return_value = [ serialize.deserialize31(data=json.dumps(look_data), structure=models.Look) ] folder_data = { 'id': 'folder-id', 'name': 'Test folder', 'parent_id': '', } looks = self.__scraper.scrape_looks_from_folder( serialize.deserialize31(data=json.dumps(folder_data), structure=models.Folder)) self.assertEqual(1, len(looks)) self.assertEqual(123, looks[0].id) sdk.search_looks.assert_called_once() sdk.search_looks.assert_called_with( space_id='folder-id', fields='id,title,created_at,updated_at,description,space,public,' 'user_id,last_updater_id,query_id,url,short_url,public_url,' 'excel_file_url,google_spreadsheet_formula,view_count,' 'favorite_count,last_accessed_at,last_viewed_at,deleted,' 'deleter_id') def test_scrape_query_should_return_object(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] query_data = { 'id': 123, 'model': '', 'view': '', } sdk.query.return_value = serialize.deserialize31( data=json.dumps(query_data), structure=models.Query) query = self.__scraper.scrape_query(123) self.assertEqual(123, query.id) sdk.query.assert_called_once() sdk.query.assert_called_with(query_id=123) def test_scrape_query_generated_sql_should_return_string(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] sdk.run_query.return_value = 'select *' sql = self.__scraper.scrape_query_generated_sql(123) self.assertEqual('select *', sql) sdk.run_query.assert_called_once() sdk.run_query.assert_called_with(query_id=123, result_format='sql') def test_scrape_model_explore_should_return_object_on_success(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] model_explore_data = { 'project_name': 'test-project', 'connection_name': 'test-connection', } sdk.lookml_model_explore.return_value = serialize.deserialize31( data=json.dumps(model_explore_data), structure=models.LookmlModelExplore) model = self.__scraper.scrape_lookml_model_explore( 'test-model', 'test-view') self.assertEqual('test-project', model.project_name) sdk.lookml_model_explore.assert_called_once() sdk.lookml_model_explore.assert_called_with( lookml_model_name='test-model', explore_name='test-view') def test_scrape_model_explore_should_raise_sdk_error_on_failure(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] sdk.lookml_model_explore.side_effect = error.SDKError('SDK error') self.assertRaises(error.SDKError, self.__scraper.scrape_lookml_model_explore, 'test-model', 'test-view') sdk.lookml_model_explore.assert_called_once() sdk.lookml_model_explore.assert_called_with( lookml_model_name='test-model', explore_name='test-view') def test_scrape_connection_should_return_object(self): sdk = self.__scraper.__dict__['_MetadataScraper__sdk'] connection_data = { 'name': 'test-connection', } sdk.connection.return_value = serialize.deserialize31( data=json.dumps(connection_data), structure=models.DBConnection) connection = self.__scraper.scrape_connection('test-connection') self.assertEqual('test-connection', connection.name) sdk.connection.assert_called_once() sdk.connection.assert_called_with(connection_name='test-connection')
{ "content_hash": "dc764d56cb495aa725a3939c626e6ba5", "timestamp": "", "source": "github", "line_count": 352, "max_line_length": 79, "avg_line_length": 36.09659090909091, "alnum_prop": 0.5824020147961593, "repo_name": "GoogleCloudPlatform/datacatalog-connectors-bi", "id": "30c5b1f1eaa1694a384b2bf52229cdb228f4737d", "size": "13302", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "google-datacatalog-looker-connector/tests/google/datacatalog_connectors/looker/scrape/metadata_scraper_test.py", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Dockerfile", "bytes": "3191" }, { "name": "Python", "bytes": "980579" }, { "name": "Shell", "bytes": "9469" } ], "symlink_target": "" }
<?php namespace League\Glide\Urls; use PHPUnit\Framework\TestCase; class UrlBuilderFactoryTest extends TestCase { public function testCreate() { $urlBuilder = UrlBuilderFactory::create('/img'); $this->assertInstanceOf('League\Glide\Urls\UrlBuilder', $urlBuilder); $this->assertEquals('/img/image.jpg', $urlBuilder->getUrl('image.jpg')); } public function testCreateWithSignKey() { $urlBuilder = UrlBuilderFactory::create('img', 'example-sign-key'); $this->assertEquals( '/img/image.jpg?s=56020c3dc5f68487c14510343c3e2c43', $urlBuilder->getUrl('image.jpg') ); } public function testCreateWithSignKeyWithLeadingSlash() { $urlBuilder = UrlBuilderFactory::create('/img', 'example-sign-key'); $this->assertEquals( '/img/image.jpg?s=56020c3dc5f68487c14510343c3e2c43', $urlBuilder->getUrl('image.jpg') ); } }
{ "content_hash": "05810d64c0e92e367c72bec857317cae", "timestamp": "", "source": "github", "line_count": 36, "max_line_length": 80, "avg_line_length": 26.833333333333332, "alnum_prop": 0.6366459627329193, "repo_name": "thephpleague/glide", "id": "254095f6cee12fa1d2a70aa523272fb1bfbb9980", "size": "966", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "tests/Urls/UrlBuilderFactoryTest.php", "mode": "33188", "license": "mit", "language": [ { "name": "PHP", "bytes": "175752" } ], "symlink_target": "" }
using namespace arangodb; using namespace arangodb::basics; // All other constructors delegate to this one. Exception::Exception(ErrorCode code, std::string&& errorMessage, SourceLocation location) noexcept : _errorMessage(std::move(errorMessage)), _location(location), _code(code) { appendLocation(); } Exception::Exception(ErrorCode code, SourceLocation location) : Exception(code, TRI_errno_string(code), location) {} Exception::Exception(Result const& result, SourceLocation location) : Exception(result.errorNumber(), result.errorMessage(), location) {} Exception::Exception(Result&& result, SourceLocation location) noexcept : Exception(result.errorNumber(), std::move(result).errorMessage(), location) {} Exception::Exception(ErrorCode code, std::string_view errorMessage, SourceLocation location) : Exception(code, std::string{errorMessage}, location) {} Exception::Exception(ErrorCode code, const char* errorMessage, SourceLocation location) : Exception(code, std::string{errorMessage}, location) {} Exception::Exception(ErrorCode code, char const* file, int line) : Exception(code, SourceLocation(file, line)) {} Exception::Exception(arangodb::Result const& result, char const* file, int line) : Exception(result, SourceLocation(file, line)) {} Exception::Exception(arangodb::Result&& result, char const* file, int line) noexcept : Exception(std::move(result), SourceLocation(file, line)) {} Exception::Exception(ErrorCode code, std::string_view errorMessage, char const* file, int line) : Exception(code, errorMessage, SourceLocation(file, line)) {} Exception::Exception(ErrorCode code, std::string&& errorMessage, char const* file, int line) noexcept : Exception(code, std::move(errorMessage), SourceLocation(file, line)) {} Exception::Exception(ErrorCode code, char const* errorMessage, char const* file, int line) : Exception(code, errorMessage, SourceLocation(file, line)) {} /// @brief returns the error message std::string const& Exception::message() const noexcept { return _errorMessage; } /// @brief returns the error code ErrorCode Exception::code() const noexcept { return _code; } /// @brief return exception message char const* Exception::what() const noexcept { return _errorMessage.c_str(); } SourceLocation Exception::location() const noexcept { return _location; } /// @brief append original error location to message void Exception::appendLocation() noexcept try { if (_code == TRI_ERROR_INTERNAL) { _errorMessage += std::string(" (exception location: ") + _location.file_name() + ":" + std::to_string(_location.line()) + "). Please report this error to arangodb.com"; } else if (_code == TRI_ERROR_OUT_OF_MEMORY || _code == TRI_ERROR_NOT_IMPLEMENTED) { _errorMessage += std::string(" (exception location: ") + _location.file_name() + ":" + std::to_string(_location.line()) + ")"; } } catch (...) { // this function is called from the exception constructor, so it should // not itself throw another exception } /// @brief construct an error message from a template string std::string Exception::FillExceptionString(ErrorCode code, ...) { // Note that we rely upon the string being null-terminated. // The string_view doesn't guarantee that, but we know that all error messages // are null-terminated. char const* format = TRI_errno_string(code).data(); TRI_ASSERT(format != nullptr); #ifdef ARANGODB_ENABLE_MAINTAINER_MODE // Obviously the formatstring of the error code has to support parameters. TRI_ASSERT(strchr(format, '%') != nullptr); #endif char buffer[1024]; va_list ap; va_start(ap, code); int length = vsnprintf(buffer, sizeof(buffer) - 1, format, ap); va_end(ap); buffer[sizeof(buffer) - 1] = '\0'; // Windows if (length < 0) { // error in vsnprintf return std::string(format); } return std::string(buffer, size_t(length)); } /// @brief construct an error message from a template string std::string Exception::FillFormatExceptionString(char const* format, ...) { TRI_ASSERT(format != nullptr); #ifdef ARANGODB_ENABLE_MAINTAINER_MODE // Format #1 should come from the macro... TRI_ASSERT(strchr(format, '%') != nullptr); // Obviously the user has to give us a format string. TRI_ASSERT(strchr(strchr(format, '%'), '%') != nullptr); #endif char buffer[1024]; va_list ap; va_start(ap, format); int length = vsnprintf(buffer, sizeof(buffer) - 1, format, ap); va_end(ap); buffer[sizeof(buffer) - 1] = '\0'; // Windows if (length < 0) { // error in vsnprintf return std::string(format); } return std::string(buffer, size_t(length)); } [[noreturn]] void ::arangodb::basics::helper::dieWithLogMessage( char const* errorMessage) { LOG_TOPIC("1d250", FATAL, Logger::FIXME) << "Failed to create an error message, giving up. " << errorMessage; FATAL_ERROR_EXIT(); } [[noreturn]] void ::arangodb::basics::helper::logAndAbort(const char* what) { LOG_TOPIC("fa7a1", FATAL, ::arangodb::Logger::CRASH) << what; TRI_ASSERT(false); FATAL_ERROR_ABORT(); } auto ::arangodb::basics::tryToResult(futures::Try<Result>&& tryResult) noexcept -> Result { return catchToResult([&] { return std::move(tryResult).get(); }); }
{ "content_hash": "d8d951169ddec64186fbffc08189513d", "timestamp": "", "source": "github", "line_count": 140, "max_line_length": 80, "avg_line_length": 39.357142857142854, "alnum_prop": 0.6693284936479129, "repo_name": "arangodb/arangodb", "id": "1372c1b94f5065783b80b8b2048495b13c88b713", "size": "6795", "binary": false, "copies": "2", "ref": "refs/heads/devel", "path": "lib/Basics/Exceptions.cpp", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Assembly", "bytes": "61827" }, { "name": "C", "bytes": "311036" }, { "name": "C++", "bytes": "35149373" }, { "name": "CMake", "bytes": "387268" }, { "name": "CSS", "bytes": "210549" }, { "name": "EJS", "bytes": "232160" }, { "name": "HTML", "bytes": "23114" }, { "name": "JavaScript", "bytes": "33841256" }, { "name": "LLVM", "bytes": "15003" }, { "name": "NASL", "bytes": "381737" }, { "name": "NSIS", "bytes": "47138" }, { "name": "Pascal", "bytes": "75391" }, { "name": "Perl", "bytes": "9811" }, { "name": "PowerShell", "bytes": "6806" }, { "name": "Python", "bytes": "190515" }, { "name": "SCSS", "bytes": "255542" }, { "name": "Shell", "bytes": "133576" }, { "name": "TypeScript", "bytes": "179074" }, { "name": "Yacc", "bytes": "79620" } ], "symlink_target": "" }
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2010-2017 Evolveum ~ ~ 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. --> <user oid="c0c010c0-d34d-b33f-f00d-111111113333" xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns='http://midpoint.evolveum.com/xml/ns/test/foo-1.xsd' xmlns:a="http://prism.evolveum.com/xml/ns/public/annotation-3" xmlns:t="http://prism.evolveum.com/xml/ns/public/types-3" xmlns:adhoc="http://midpoint.evolveum.com/xml/ns/test/adhoc-1.xsd" xmlns:ext="http://midpoint.evolveum.com/xml/ns/test/extension"> <name>will</name> <extension> <ext:stringType_Wrong>FOObar</ext:stringType_Wrong> </extension> <fullName>Will Turner</fullName> <givenName>William</givenName> <familyName>Turner</familyName> </user>
{ "content_hash": "a6d85d2a8f950ddad85619df20c3de05", "timestamp": "", "source": "github", "line_count": 36, "max_line_length": 76, "avg_line_length": 38, "alnum_prop": 0.7068713450292398, "repo_name": "arnost-starosta/midpoint", "id": "2cd5d8fd9eb0cbb0f72d544f8e87b1d8fb4bf70e", "size": "1368", "binary": false, "copies": "2", "ref": "refs/heads/master", "path": "infra/prism/src/test/resources/common/xml/user-wrong-item.xml", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "360626" }, { "name": "CSS", "bytes": "246079" }, { "name": "HTML", "bytes": "1906400" }, { "name": "Java", "bytes": "33331059" }, { "name": "JavaScript", "bytes": "18450" }, { "name": "PLSQL", "bytes": "212132" }, { "name": "PLpgSQL", "bytes": "9834" }, { "name": "Perl", "bytes": "13072" }, { "name": "Shell", "bytes": "52" } ], "symlink_target": "" }
/** * (NCCC skeleton code) package created using TextMate version 2.0 on a Mac OS X 10.10.5 system. */ package skeleton; /** * Interface for printing menu options generally required by the application's driver class. */ public interface Menu { /* Run the menu. */ public void runMenu(); /* Application main menu. */ public void mainMenu(); /* Run submenu. */ public void runSubMenu(); /* Submenu. */ public void subMenu(); }
{ "content_hash": "a6f3c0f6fcdad3f8519130a359863fe1", "timestamp": "", "source": "github", "line_count": 24, "max_line_length": 96, "avg_line_length": 18.625, "alnum_prop": 0.6711409395973155, "repo_name": "youldash/NCCC", "id": "e13f27e7bdd0cc6b04fe9f857ee9f9c9c45e17d7", "size": "2064", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "skeleton/Menu.java", "mode": "33188", "license": "mit", "language": [ { "name": "C++", "bytes": "2254" }, { "name": "Java", "bytes": "179205" } ], "symlink_target": "" }
package jsf.template.bean; import java.io.Serializable; import javax.faces.view.ViewScoped; import javax.inject.Named; /** * Persiste el nivel actual ; importante para las migas de pan * * @author ova / last modified by $Author: ova $ * @version $Revision: 97278 $ */ @Named @ViewScoped public class CurrentLevelData implements Serializable { private int currentLevel = 1; public int getCurrentLevel() { return currentLevel; } public void setCurrentLevel(int currentLevel) { this.currentLevel = currentLevel; } }
{ "content_hash": "3e765c90e16ce7fead343657eb76cce6", "timestamp": "", "source": "github", "line_count": 28, "max_line_length": 62, "avg_line_length": 19.071428571428573, "alnum_prop": 0.7397003745318352, "repo_name": "uniquindiogaso/suturno", "id": "8fe20afed2f7c8d86a5d2c839ccd4a27df526c63", "size": "534", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "Web/src/main/java/jsf/template/bean/CurrentLevelData.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "CSS", "bytes": "13152" }, { "name": "HTML", "bytes": "38950" }, { "name": "Java", "bytes": "412920" }, { "name": "JavaScript", "bytes": "957" } ], "symlink_target": "" }
var debug = require('debug')('page-articles'); var user = require('page-auth-access'); var keyboard = require('glint-trigger-keyboard'); var sidenav = require('glint-trigger-sidenav'); var router = require('page.js'); var defaults = require('defaults'); var c = require('./config'); var Wrap = require('./wrap'); module.exports = function articles(o) { o = defaults(o, c); return router(o.route, function(req) { var wrap = Wrap(o); debug('route', window.location.href, context.locale, req.params); if (user.can('edit')) { wrap.editable(true); keyboard().add(wrap.container); sidenav().add(wrap.container); } wrap .i18n(context.i18n) .cid(o.id) .place(context.place || o.place) .load(function(err, result) { if (err) return console.error(err); debug('wrap loaded', result); }) }); };
{ "content_hash": "336e516254797d237c5c2bb973adc1a8", "timestamp": "", "source": "github", "line_count": 34, "max_line_length": 69, "avg_line_length": 25.852941176470587, "alnum_prop": 0.6154721274175199, "repo_name": "glintcms/glintcms-starter-intesso", "id": "ffdffafae3d70dfadb0885afc3c673e29a9b0790", "size": "879", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "local_modules/page-articles/browser.js", "mode": "33188", "license": "mit", "language": [ { "name": "CSS", "bytes": "37818" }, { "name": "HTML", "bytes": "23095" }, { "name": "JavaScript", "bytes": "200023" } ], "symlink_target": "" }
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- /fasttmp/mkdist-qt-4.3.5-1211793125/qtopia-core-opensource-src-4.3.5/src/corelib/tools/qline.cpp --> <head> <title>Qt 4.3: List of All Members for QLineF</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" width="32" height="32" border="0" /></a></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="modules.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td> <td align="right" valign="top" width="230"><a href="http://www.trolltech.com"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></a></td></tr></table><h1 align="center">List of All Members for QLineF</h1> <p>This is the complete list of members for <a href="qlinef.html">QLineF</a>, including inherited members.</p> <p><table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="45%" valign="top"><ul> <li><div class="fn"/>enum <a href="qlinef.html#IntersectType-enum">IntersectType</a></li> <li><div class="fn"/><a href="qlinef.html#QLineF">QLineF</a> ()</li> <li><div class="fn"/><a href="qlinef.html#QLineF-2">QLineF</a> ( const QPointF &amp;, const QPointF &amp; )</li> <li><div class="fn"/><a href="qlinef.html#QLineF-3">QLineF</a> ( qreal, qreal, qreal, qreal )</li> <li><div class="fn"/><a href="qlinef.html#QLineF-4">QLineF</a> ( const QLine &amp; )</li> <li><div class="fn"/><a href="qlinef.html#p1">p1</a> () const : QPointF</li> <li><div class="fn"/><a href="qlinef.html#p2">p2</a> () const : QPointF</li> <li><div class="fn"/><a href="qlinef.html#x1">x1</a> () const : qreal</li> <li><div class="fn"/><a href="qlinef.html#x2">x2</a> () const : qreal</li> <li><div class="fn"/><a href="qlinef.html#y1">y1</a> () const : qreal</li> <li><div class="fn"/><a href="qlinef.html#y2">y2</a> () const : qreal</li> <li><div class="fn"/><a href="qlinef.html#angle">angle</a> ( const QLineF &amp; ) const : qreal</li> <li><div class="fn"/><a href="qlinef.html#dx">dx</a> () const : qreal</li> </ul></td><td valign="top"><ul> <li><div class="fn"/><a href="qlinef.html#dy">dy</a> () const : qreal</li> <li><div class="fn"/><a href="qlinef.html#intersect">intersect</a> ( const QLineF &amp;, QPointF * ) const : IntersectType</li> <li><div class="fn"/><a href="qlinef.html#isNull">isNull</a> () const : bool</li> <li><div class="fn"/><a href="qlinef.html#length">length</a> () const : qreal</li> <li><div class="fn"/><a href="qlinef.html#normalVector">normalVector</a> () const : QLineF</li> <li><div class="fn"/><a href="qlinef.html#pointAt">pointAt</a> ( qreal ) const : QPointF</li> <li><div class="fn"/><a href="qlinef.html#setLength">setLength</a> ( qreal )</li> <li><div class="fn"/><a href="qlinef.html#toLine">toLine</a> () const : QLine</li> <li><div class="fn"/><a href="qlinef.html#translate">translate</a> ( const QPointF &amp; )</li> <li><div class="fn"/><a href="qlinef.html#translate-2">translate</a> ( qreal, qreal )</li> <li><div class="fn"/><a href="qlinef.html#unitVector">unitVector</a> () const : QLineF</li> <li><div class="fn"/><a href="qlinef.html#operator-not-eq">operator!=</a> ( const QLineF &amp; ) const : bool</li> <li><div class="fn"/><a href="qlinef.html#operator-eq-eq">operator==</a> ( const QLineF &amp; ) const : bool</li> </ul> </td></tr> </table></p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="30%">Copyright &copy; 2008 <a href="trolltech.html">Trolltech</a></td> <td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="30%" align="right"><div align="right">Qt 4.3.5</div></td> </tr></table></div></address></body> </html>
{ "content_hash": "61f4d9bfeb27d1c03e12ce40659a5cf2", "timestamp": "", "source": "github", "line_count": 55, "max_line_length": 562, "avg_line_length": 81.43636363636364, "alnum_prop": 0.6479124804643893, "repo_name": "misizeji/StudyNote_201308", "id": "c5a53fffcb90deaacb0885b83745a78d65254be0", "size": "4479", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "webserver/html/qlinef-members.html", "mode": "33188", "license": "mit", "language": [ { "name": "Assembly", "bytes": "24904" }, { "name": "Batchfile", "bytes": "344" }, { "name": "C", "bytes": "38209826" }, { "name": "C++", "bytes": "52779448" }, { "name": "CSS", "bytes": "10599" }, { "name": "HTML", "bytes": "38756865" }, { "name": "JavaScript", "bytes": "11538" }, { "name": "Makefile", "bytes": "160624" }, { "name": "QMake", "bytes": "20539" }, { "name": "Shell", "bytes": "6618" } ], "symlink_target": "" }
/* 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. */ package org.flowable.ui.modeler.conf; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.SQLException; import java.util.Properties; import javax.sql.DataSource; import org.apache.ibatis.session.SqlSessionFactory; import org.flowable.common.engine.api.FlowableException; import org.flowable.ui.common.service.exception.InternalServerErrorException; import org.flowable.ui.common.util.LiquibaseUtil; import org.flowable.ui.modeler.properties.FlowableModelerAppProperties; import org.mybatis.spring.SqlSessionFactoryBean; import org.mybatis.spring.SqlSessionTemplate; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.io.ResourceLoader; import org.springframework.core.io.support.ResourcePatternUtils; import liquibase.Liquibase; import liquibase.database.Database; import liquibase.database.DatabaseConnection; import liquibase.database.DatabaseFactory; import liquibase.database.jvm.JdbcConnection; import liquibase.exception.DatabaseException; import liquibase.resource.ClassLoaderResourceAccessor; @Configuration(proxyBeanMethods = false) public class ModelerDatabaseConfiguration { private static final Logger LOGGER = LoggerFactory.getLogger(ModelerDatabaseConfiguration.class); protected static final String LIQUIBASE_CHANGELOG_PREFIX = "ACT_DE_"; @Autowired protected FlowableModelerAppProperties modelerAppProperties; @Autowired protected ResourceLoader resourceLoader; protected static Properties databaseTypeMappings = getDefaultDatabaseTypeMappings(); public static final String DATABASE_TYPE_H2 = "h2"; public static final String DATABASE_TYPE_HSQL = "hsql"; public static final String DATABASE_TYPE_MYSQL = "mysql"; public static final String DATABASE_TYPE_ORACLE = "oracle"; public static final String DATABASE_TYPE_POSTGRES = "postgres"; public static final String DATABASE_TYPE_MSSQL = "mssql"; public static final String DATABASE_TYPE_DB2 = "db2"; public static Properties getDefaultDatabaseTypeMappings() { Properties databaseTypeMappings = new Properties(); databaseTypeMappings.setProperty("H2", DATABASE_TYPE_H2); databaseTypeMappings.setProperty("HSQL Database Engine", DATABASE_TYPE_HSQL); databaseTypeMappings.setProperty("MySQL", DATABASE_TYPE_MYSQL); databaseTypeMappings.setProperty("MariaDB", DATABASE_TYPE_MYSQL); databaseTypeMappings.setProperty("Oracle", DATABASE_TYPE_ORACLE); databaseTypeMappings.setProperty("PostgreSQL", DATABASE_TYPE_POSTGRES); databaseTypeMappings.setProperty("Microsoft SQL Server", DATABASE_TYPE_MSSQL); databaseTypeMappings.setProperty(DATABASE_TYPE_DB2, DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/NT", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/NT64", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2 UDP", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/LINUX", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/LINUX390", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/LINUXX8664", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/LINUXZ64", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/LINUXPPC64", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/LINUXPPC64LE", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/400 SQL", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/6000", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2 UDB iSeries", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/AIX64", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/HPUX", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/HP64", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/SUN", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/SUN64", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/PTX", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2/2", DATABASE_TYPE_DB2); databaseTypeMappings.setProperty("DB2 UDB AS400", DATABASE_TYPE_DB2); return databaseTypeMappings; } @Bean @Qualifier("flowableModeler") public SqlSessionFactory modelerSqlSessionFactory(DataSource dataSource) { SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean(); sqlSessionFactoryBean.setDataSource(dataSource); String databaseType = initDatabaseType(dataSource); if (databaseType == null) { throw new FlowableException("couldn't deduct database type"); } try { Properties properties = new Properties(); properties.put("prefix", modelerAppProperties.getDataSourcePrefix()); properties.put("blobType", "BLOB"); properties.put("boolValue", "TRUE"); properties.load(this.getClass().getClassLoader().getResourceAsStream("org/flowable/db/properties/" + databaseType + ".properties")); sqlSessionFactoryBean.setConfigurationProperties(properties); sqlSessionFactoryBean .setMapperLocations(ResourcePatternUtils.getResourcePatternResolver(resourceLoader).getResources("classpath:/META-INF/modeler-mybatis-mappings/*.xml")); sqlSessionFactoryBean.afterPropertiesSet(); return sqlSessionFactoryBean.getObject(); } catch (Exception e) { throw new FlowableException("Could not create sqlSessionFactory", e); } } @Bean(destroyMethod = "clearCache") // destroyMethod: see https://github.com/mybatis/old-google-code-issues/issues/778 @Qualifier("flowableModeler") public SqlSessionTemplate modelerSqlSessionTemplate(@Qualifier("flowableModeler") SqlSessionFactory sqlSessionFactory) { return new SqlSessionTemplate(sqlSessionFactory); } @Bean @Qualifier("flowableModeler") public Liquibase modelerLiquibase(DataSource dataSource) { LOGGER.info("Configuring Liquibase"); try { return LiquibaseUtil.runInFlowableScope(() -> createAndUpdateLiquibase(dataSource)); } catch (Exception e) { throw new InternalServerErrorException("Error creating liquibase database", e); } } protected Liquibase createAndUpdateLiquibase(DataSource dataSource) { Liquibase liquibase = null; try { DatabaseConnection connection = new JdbcConnection(dataSource.getConnection()); Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(connection); database.setDatabaseChangeLogTableName(LIQUIBASE_CHANGELOG_PREFIX + database.getDatabaseChangeLogTableName()); database.setDatabaseChangeLogLockTableName(LIQUIBASE_CHANGELOG_PREFIX + database.getDatabaseChangeLogLockTableName()); liquibase = new Liquibase("META-INF/liquibase/flowable-modeler-app-db-changelog.xml", new ClassLoaderResourceAccessor(), database); liquibase.update("flowable"); return liquibase; } catch (Exception e) { throw new InternalServerErrorException("Error creating liquibase database", e); } finally { closeDatabase(liquibase); } } protected String initDatabaseType(DataSource dataSource) { String databaseType = null; Connection connection = null; try { connection = dataSource.getConnection(); DatabaseMetaData databaseMetaData = connection.getMetaData(); String databaseProductName = databaseMetaData.getDatabaseProductName(); LOGGER.info("database product name: '{}'", databaseProductName); databaseType = databaseTypeMappings.getProperty(databaseProductName); if (databaseType == null) { throw new FlowableException("couldn't deduct database type from database product name '" + databaseProductName + "'"); } LOGGER.info("using database type: {}", databaseType); } catch (SQLException e) { LOGGER.error("Exception while initializing Database connection", e); } finally { try { if (connection != null) { connection.close(); } } catch (SQLException e) { LOGGER.error("Exception while closing the Database connection", e); } } return databaseType; } private void closeDatabase(Liquibase liquibase) { if (liquibase != null) { Database database = liquibase.getDatabase(); if (database != null) { try { database.close(); } catch (DatabaseException e) { LOGGER.warn("Error closing database", e); } } } } }
{ "content_hash": "aa917a923d70ed3fe5b4a6ee96970321", "timestamp": "", "source": "github", "line_count": 211, "max_line_length": 172, "avg_line_length": 46.800947867298575, "alnum_prop": 0.7117974683544304, "repo_name": "dbmalkovsky/flowable-engine", "id": "5232f75ee9363daabc4029e70eb12eeb8ed6605e", "size": "9875", "binary": false, "copies": "2", "ref": "refs/heads/main", "path": "modules/flowable-ui/flowable-ui-modeler-conf/src/main/java/org/flowable/ui/modeler/conf/ModelerDatabaseConfiguration.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "166" }, { "name": "CSS", "bytes": "673786" }, { "name": "Dockerfile", "bytes": "477" }, { "name": "Groovy", "bytes": "482" }, { "name": "HTML", "bytes": "1201811" }, { "name": "Handlebars", "bytes": "6004" }, { "name": "Java", "bytes": "46660725" }, { "name": "JavaScript", "bytes": "12668702" }, { "name": "Mustache", "bytes": "2383" }, { "name": "PLSQL", "bytes": "268970" }, { "name": "SQLPL", "bytes": "238673" }, { "name": "Shell", "bytes": "12773" }, { "name": "TSQL", "bytes": "19452" } ], "symlink_target": "" }
package eu.wiegandt.nicklas.simpleexcelimexporter.exceptions; /** * A enumeration whit the possible warning types. * * @author Nicklas Wiegandt (Nicklas2751)<br> * <b>Mail:</b> nicklas@wiegandt.eu<br> * <b>Jabber:</b> nicklas2751@elaon.de<br> * <b>Skype:</b> Nicklas2751<br> * */ public enum ExcelImExportWarningTypes { COLUMN_NOT_IN_MAPPING("The column \"%s\" is not a part of the mapping file."), FIELD_NOT_IMPORTABLE("The field \"%s\" is not importable and will be skipped."), TABLE_INVALID_SKIP("The table \"%s\" is invalid and will be skipped"); private String messageTemplate; private ExcelImExportWarningTypes(final String aMessageTemplate) { messageTemplate = aMessageTemplate; } public String getMessageTemplate() { return messageTemplate; } }
{ "content_hash": "727baf5d937a285fe59674d0991ccbe8", "timestamp": "", "source": "github", "line_count": 29, "max_line_length": 84, "avg_line_length": 29.137931034482758, "alnum_prop": 0.6710059171597633, "repo_name": "Nicklas2751/SimpleExcelImExporter", "id": "5bd7ad39969d8143a955bd42f45a14acb52b38d5", "size": "845", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/main/java/eu/wiegandt/nicklas/simpleexcelimexporter/exceptions/ExcelImExportWarningTypes.java", "mode": "33188", "license": "mit", "language": [ { "name": "Java", "bytes": "98919" } ], "symlink_target": "" }
package org.apache.logging.log4j.message; import java.util.concurrent.CountDownLatch; import java.util.concurrent.locks.ReentrantLock; import org.junit.Test; import static org.junit.Assert.*; /** * */ public class ThreadDumpMessageTest { @Test public void testMessage() { final ThreadDumpMessage msg = new ThreadDumpMessage("Testing"); final String message = msg.getFormattedMessage(); //System.out.print(message); assertTrue("No header", message.contains("Testing")); assertTrue("No RUNNABLE", message.contains("RUNNABLE")); assertTrue("No ThreadDumpMessage", message.contains("ThreadDumpMessage")); } @Test public void testMessageWithLocks() throws Exception { final ReentrantLock lock = new ReentrantLock(); lock.lock(); final Thread thread1 = new Thread1(lock); thread1.start(); ThreadDumpMessage msg; synchronized(this) { final Thread thread2 = new Thread2(this); thread2.start(); try { Thread.sleep(200); msg = new ThreadDumpMessage("Testing"); } finally { lock.unlock(); } } final String message = msg.getFormattedMessage(); //System.out.print(message); assertTrue("No header", message.contains("Testing")); assertTrue("No RUNNABLE", message.contains("RUNNABLE")); assertTrue("No ThreadDumpMessage", message.contains("ThreadDumpMessage")); //assertTrue("No Locks", message.contains("waiting on")); //assertTrue("No syncronizers", message.contains("locked syncrhonizers")); } @Test public void testToString() { final ThreadDumpMessage msg = new ThreadDumpMessage("Test"); final String actual = msg.toString(); assertTrue(actual.contains("Test")); assertTrue(actual.contains("RUNNABLE")); assertTrue(actual.contains(getClass().getName())); } @Test public void testUseConstructorThread() throws InterruptedException { // LOG4J2-763 final ThreadDumpMessage msg = new ThreadDumpMessage("Test"); final String[] actual = new String[1]; final Thread other = new Thread("OtherThread") { @Override public void run() { actual[0] = msg.getFormattedMessage(); } }; other.start(); other.join(); assertTrue("No mention of other thread in msg", !actual[0].contains("OtherThread")); } @Test public void formatTo_usesCachedMessageString() throws Exception { final ThreadDumpMessage message = new ThreadDumpMessage(""); final String initial = message.getFormattedMessage(); assertFalse("no ThreadWithCountDownLatch thread yet", initial.contains("ThreadWithCountDownLatch")); final CountDownLatch started = new CountDownLatch(1); final CountDownLatch keepAlive = new CountDownLatch(1); final ThreadWithCountDownLatch thread = new ThreadWithCountDownLatch(started, keepAlive); thread.start(); started.await(); // ensure thread is running final StringBuilder result = new StringBuilder(); message.formatTo(result); assertFalse("no ThreadWithCountDownLatch captured", result.toString().contains("ThreadWithCountDownLatch")); assertEquals(initial, result.toString()); keepAlive.countDown(); // allow thread to die } private class Thread1 extends Thread { private final ReentrantLock lock; public Thread1(final ReentrantLock lock) { this.lock = lock; } @Override public void run() { lock.lock(); lock.unlock(); } } private class Thread2 extends Thread { private final Object obj; public Thread2(final Object obj) { this.obj = obj; } @Override public void run() { synchronized (obj) { } } } private class ThreadWithCountDownLatch extends Thread { private final CountDownLatch started; private final CountDownLatch keepAlive; volatile boolean finished; public ThreadWithCountDownLatch(final CountDownLatch started, final CountDownLatch keepAlive) { super("ThreadWithCountDownLatch"); this.started = started; this.keepAlive = keepAlive; setDaemon(true); } @Override public void run() { started.countDown(); try { keepAlive.await(); } catch (final InterruptedException e) { // ignored } finished = true; } } }
{ "content_hash": "87800c8fae3ddf39cf1d0fbaa028c943", "timestamp": "", "source": "github", "line_count": 153, "max_line_length": 108, "avg_line_length": 31.431372549019606, "alnum_prop": 0.6094822208359326, "repo_name": "GFriedrich/logging-log4j2", "id": "8668d0ab84f52473e8f1acb27ce90641d96c26b8", "size": "5609", "binary": false, "copies": "3", "ref": "refs/heads/master", "path": "log4j-api/src/test/java/org/apache/logging/log4j/message/ThreadDumpMessageTest.java", "mode": "33188", "license": "apache-2.0", "language": [ { "name": "Batchfile", "bytes": "7632" }, { "name": "CSS", "bytes": "4523" }, { "name": "Groovy", "bytes": "91" }, { "name": "Java", "bytes": "9104686" }, { "name": "JavaScript", "bytes": "59311" }, { "name": "Shell", "bytes": "13189" } ], "symlink_target": "" }
from __future__ import absolute_import import platform import unittest from gssapi import ( bindings, Credential, NoCredential, CredentialsExpired, GSSException, GSSCException, S_NO_CRED, C_INITIATE, C_ACCEPT ) class CredentialTest(unittest.TestCase): def test_bad_args(self): self.assertRaises(TypeError, Credential, desired_name='incorrect type') self.assertRaises(TypeError, Credential, desired_mechs='incorrect type') self.assertRaises(TypeError, Credential, lifetime='incorrect type') self.assertRaises(TypeError, Credential, usage='incorrect type') class DefaultInitCredentialTest(unittest.TestCase): def setUp(self): try: self.cred = Credential(usage=C_INITIATE) self.cred.name except (NoCredential, CredentialsExpired): self.skipTest("No default init credential available, try running with a Kerberos ticket.") self.is_heimdal_mac = False if platform.system() == 'Darwin': mac_ver = platform.mac_ver()[0].split('.') if int(mac_ver[0]) >= 10 and int(mac_ver[1]) >= 7: self.is_heimdal_mac = True def test_lifetime(self): first_lifetime = self.cred.lifetime self.assertGreaterEqual(first_lifetime, 0) second_lifetime = self.cred.lifetime self.assertGreaterEqual(second_lifetime, 0) self.assertLessEqual(second_lifetime, first_lifetime) def test_usage(self): self.assertEqual(C_INITIATE, self.cred.usage) def test_name(self): self.assertGreater(len(str(self.cred.name)), 0) def test_export(self): if self.is_heimdal_mac: self.skipTest("gss_export_cred is bugged on Mac OS X 10.7+") if not hasattr(bindings.C, 'gss_export_cred'): self.skipTest("No support for gss_export_cred") else: self.assertGreater(len(str(self.cred.export())), 0) def test_export_import(self): if self.is_heimdal_mac: self.skipTest("gss_export_cred is bugged on Mac OS X 10.7+") if not hasattr(bindings.C, 'gss_export_cred'): self.skipTest("No support for gss_export_cred") else: orig_name = self.cred.name exported_token = self.cred.export() imported_cred = Credential.imprt(exported_token) self.assertEqual(orig_name, imported_cred.name) def test_export_import_raises(self): if self.is_heimdal_mac: self.skipTest("gss_export_cred is bugged on Mac OS X 10.7+") if not hasattr(bindings.C, 'gss_export_cred'): self.skipTest("No support for gss_export_cred") else: exported_token = self.cred.export() with self.assertRaises(GSSException): # Cutting off characters should make token invalid Credential.imprt(exported_token[4:]) class DefaultAcceptCredentialTest(DefaultInitCredentialTest): def setUp(self): try: self.cred = Credential(usage=C_ACCEPT) self.cred.name except GSSCException as exc: if ( exc.maj_status == S_NO_CRED or 'Permission denied' in exc.message or 'keytab is nonexistent or empty' in exc.message ): self.skipTest("No default accept credential available, " "try running with a Kerberos keytab readable.") else: raise self.is_heimdal_mac = False if platform.system() == 'Darwin': mac_ver = platform.mac_ver()[0].split('.') if int(mac_ver[0]) >= 10 and int(mac_ver[1]) >= 7: self.is_heimdal_mac = True def test_usage(self): self.assertEqual(C_ACCEPT, self.cred.usage)
{ "content_hash": "0bb6e988d16544c40bbc74979aa77fed", "timestamp": "", "source": "github", "line_count": 102, "max_line_length": 102, "avg_line_length": 37.333333333333336, "alnum_prop": 0.6160714285714286, "repo_name": "sigmaris/python-gssapi", "id": "537bb53e66abdbf278f45968bf8cacda9701c70e", "size": "3808", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "tests/creds.py", "mode": "33188", "license": "mit", "language": [ { "name": "ApacheConf", "bytes": "938" }, { "name": "HTML", "bytes": "3947" }, { "name": "Pascal", "bytes": "1133" }, { "name": "Puppet", "bytes": "33631" }, { "name": "Python", "bytes": "170083" }, { "name": "Ruby", "bytes": "453035" }, { "name": "Shell", "bytes": "495" } ], "symlink_target": "" }
using System; using System.Threading.Tasks; namespace Nimbus.Infrastructure.MessageSendersAndReceivers { internal interface INimbusMessageReceiver { Task Start(Func<NimbusMessage, Task> callback); Task Stop(); } }
{ "content_hash": "da9e0f9f6112b1c07fef0d0b50fbe7cc", "timestamp": "", "source": "github", "line_count": 11, "max_line_length": 58, "avg_line_length": 22.09090909090909, "alnum_prop": 0.7242798353909465, "repo_name": "KodrAus/Nimbus", "id": "4c9a0e5bf43fccf1cd3aeef16547f7688cb7ddd5", "size": "245", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/Nimbus/Infrastructure/MessageSendersAndReceivers/INimbusMessageReceiver.cs", "mode": "33188", "license": "mit", "language": [ { "name": "ASP", "bytes": "106" }, { "name": "C#", "bytes": "948023" }, { "name": "CSS", "bytes": "685" }, { "name": "HTML", "bytes": "5125" }, { "name": "JavaScript", "bytes": "21032" }, { "name": "PowerShell", "bytes": "20908" } ], "symlink_target": "" }
<?php /** * @license see LICENSE */ namespace UForm\Builder; use UForm\Filter\ArrayValue; use UForm\Filter\DefaultValue; use UForm\Filter\FreezeValue; use UForm\Filter\RemoveValue; use UForm\Form\Element; use UForm\Form\Element\Container\Group; use UForm\Form\Element\Primary\Input\Check; use UForm\Form\Element\Primary\Input\File; use UForm\Form\Element\Primary\Input\Hidden; use UForm\Form\Element\Primary\Input\Password; use UForm\Form\Element\Primary\Input\Radio; use UForm\Form\Element\Primary\Input\Submit; use UForm\Form\Element\Primary\Input\Text; use UForm\Form\Element\Primary\Select; use UForm\Form\Element\Primary\TextArea; use UForm\Validator\File\MimeType; use UForm\Form\Element\Primary\Input\Range; use UForm\Form\Element\Primary\Input\Color; trait InputBuilder { /** * @see FluentElement::add() * @return $this */ abstract public function add(Element $e); /** * @see FluentElement::open() * @return $this */ abstract public function open(Group $e); /** * @see FluentElement::close() * @return $this */ abstract public function close(); /** * @see FluentElement::last() * @return Element */ abstract public function last(); /** * @see FluentElement::current() * @return Element\Container */ abstract public function current(); /** * Binds the given input with its title * @param Element $element * @param $label */ protected function _makeInput(Element $element, $label, $defaultValue) { if (null !== $label) { $element->setOption('label', $label); } if (null !== $defaultValue) { $element->addFilter(new DefaultValue($defaultValue)); } } /** * creates an input text * @see \UForm\Form\Element\Primary\Text * @param $name * @param $label * @return $this */ public function text($name, $label = null, $defaultValue = null) { $element = new Text($name); $this->_makeInput($element, $label, $defaultValue); $this->add($element); return $this; } /** * creates an input color * @see \UForm\Form\Element\Primary\Text * @param $name * @param $label * @return $this */ public function color($name, $label = null, $defaultValue = null) { $element = new Color($name); $this->_makeInput($element, $label, $defaultValue); $this->add($element); // TODO color validation return $this; } /** * creates an input range * @see \UForm\Form\Element\Primary\Range * @param $name * @param $label * @return $this */ public function range($name, $label = null, $defaultValue = null, $min = null, $max = null, $step = null) { $element = new Range($name, $min, $max, $step); $this->_makeInput($element, $label, $defaultValue); $this->add($element); return $this; } /** * creates a textarea * @see \UForm\Form\Element\Primary\Input\Text * @param $name * @param $label * @return $this */ public function textArea($name, $label = null, $defaultValue = null) { $element = new TextArea($name); $this->_makeInput($element, $label, $defaultValue); $this->add($element); return $this; } /** * @see \UForm\Form\Element\Primary\Input\Password * @param $name * @param $label * @return $this */ public function password($name, $label = null, $defaultValue = null) { $element = new Password($name); $this->_makeInput($element, $label, $defaultValue); $this->add($element); return $this; } /** * @see Select * @param $name * @param $label * @return $this */ public function select($name, $label = null, $values = [], $defaultValue = null) { $element = new Select($name, $values); $this->_makeInput($element, $label, $defaultValue); $this->add($element); return $this; } /** * @see Select * @param $name * @param $label * @return $this */ public function selectMultiple($name, $label = null, $values = [], $defaultValue = null) { $element = new Select($name, $values, true); $this->_makeInput($element, $label, $defaultValue); $this->add($element); $this->filter(new ArrayValue()); return $this; } /** * @see \UForm\Form\Element\Primary\Input\Hidden * @param $name * @return $this */ public function hidden($name, $value = null, $defaultValue = null) { $element = new Hidden($name, $value, $defaultValue); $this->add($element); return $this; } /** * @see \UForm\Form\Element\Primary\Input\File * @param $name * @param $label * @return $this */ public function file($name, $label = null, $multiple = false, array $allowMimeTypes = null) { if ($allowMimeTypes & !empty($allowMimeTypes)) { $accept = implode(',', $allowMimeTypes); } else { $accept = null; } $element = new File($name, $multiple, $accept); $this->_makeInput($element, $label, null); $this->add($element); if ($accept) { $this->validator(new MimeType($allowMimeTypes)); } if ($multiple) { $element->addFilter(new ArrayValue(false)); } return $this; } /** * add a submit input to the current group * @see \UForm\Form\Element\Primary\Input\Submit * @return $this */ public function submit($name = null, $value = null) { $element = new Submit($name, $value); $this->add($element); return $this; } /** * add a check input to the current group * @see \UForm\Form\Element\Primary\Input\Check * @param $label * @param boolean $checkedDefault pass it to true to set the checkbox checked * @param null $name * @return $this */ public function check($name, $label, $checkedDefault = null) { // Dont set default to true (default filter in _makeInput), // instead we ask the checkedbox to be checked by default // because unchecked checkbox in html wont send any value // and thus default value is unable to check for unchecked checkebox $element = new Check($name, $checkedDefault == true); $element->addFilter($element); $this->_makeInput($element, $label, null); $this->add($element); return $this; } /** * Adds a radio to the current element * * radio must have a radio group as ancestor, but not necessary as a direct parent * * @see \UForm\Form\Element\Container\Group\Proxy\RadioGroup * @param string $name name of the radio * @param string $value value of the radio * @param string $label label of the radio. If null it will take the value of the radio as label * @return $this */ public function radio($name, $value, $label = null) { if (null == $label) { $label = $value; } $element = new Radio($name, $value); $this->_makeInput($element, $label, null); $this->add($element); return $this; } /** * add a left addon option for current input * @param $text * @return $this * @throws BuilderException */ public function leftAddon($text) { try { $this->last()->setOption('leftAddon', $text); } catch (BuilderException $e) { throw new BuilderException('leftAddon() call requires you already added an element to the builder', 0, $e); } return $this; } /** * add a rightAddon option for current input * @param $text * @return $this * @throws BuilderException */ public function rightAddon($text) { try { $this->last()->setOption('rightAddon', $text); } catch (BuilderException $e) { throw new BuilderException('rightAddon() call requires you already added an element to the builder', 0, $e); } return $this; } /** * Set the last element to be readonly * * @param string $value a value to set for the field. * This value will automatically replace the previous @see \UForm\Filter\FreezeValue * If omitted then the original value will be removed @see \UForm\Filter\RemoveValue * @return $this */ public function readOnly($value = null) { if ($value !== null) { $this->last()->addFilter(new FreezeValue($value)); } else { $this->last()->addFilter(new RemoveValue()); } $this->last()->setAttribute('readonly', 'readonly'); return $this; } /** * Set the last element to be disabled. * The value will be removed @see \UForm\Filter\RemoveValue * @return $this */ public function disabled() { $this->last()->addFilter(new RemoveValue()); $this->last()->setAttribute('disabled', 'disabled'); return $this; } /** * Set the value for last element's "inputmode" attribute. * @return $this */ public function inputMode($inputMode) { $this->last()->setAttribute('inputmode', $inputMode); return $this; } /** * Set the value for last element's "autocomplete" attribute. * @return $this */ public function autoComplete($autoComplete) { $this->last()->setAttribute('autocomplete', $autoComplete); return $this; } /** * Set an attribute on the last element added. * @param $name * @param $value * @return $this */ public function attribute($name, $value) { $this->last()->setAttribute($name, $value); return $this; } /** * Set a placeholder attribute on the last element added. * @param $value * @return $this */ public function placeholder($value) { $this->last()->setAttribute('placeholder', $value); return $this; } }
{ "content_hash": "92aef80d4fd50fc438e5bc57e9e94970", "timestamp": "", "source": "github", "line_count": 389, "max_line_length": 120, "avg_line_length": 26.601542416452443, "alnum_prop": 0.5700618477000386, "repo_name": "gsouf/UForm", "id": "8bb14a82a733e354deaa62885287bee145c9bf3f", "size": "10348", "binary": false, "copies": "1", "ref": "refs/heads/master", "path": "src/UForm/Builder/InputBuilder.php", "mode": "33188", "license": "bsd-3-clause", "language": [ { "name": "HTML", "bytes": "33255" }, { "name": "PHP", "bytes": "373595" }, { "name": "Shell", "bytes": "1633" } ], "symlink_target": "" }
package org.jetbrains.yaml.schema; import com.intellij.psi.PsiElement; import com.intellij.util.containers.ContainerUtil; import com.jetbrains.jsonSchema.extension.adapters.JsonArrayValueAdapter; import com.jetbrains.jsonSchema.extension.adapters.JsonObjectValueAdapter; import com.jetbrains.jsonSchema.extension.adapters.JsonPropertyAdapter; import com.jetbrains.jsonSchema.impl.JsonSchemaType; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.List; public class YamlEmptyObjectAdapter implements JsonObjectValueAdapter { private final PsiElement myElement; public YamlEmptyObjectAdapter(PsiElement element) { myElement = element; } @Override public boolean isObject() { return true; } @Override public boolean isArray() { return false; } @Override public boolean isStringLiteral() { return false; } @Override public boolean isNumberLiteral() { return false; } @Override public boolean isBooleanLiteral() { return false; } @NotNull @Override public List<JsonPropertyAdapter> getPropertyList() { return ContainerUtil.emptyList(); } @Override public boolean isNull() { return false; } @NotNull @Override public PsiElement getDelegate() { return myElement; } @Nullable @Override public JsonObjectValueAdapter getAsObject() { return this; } @Nullable @Override public JsonArrayValueAdapter getAsArray() { return null; } @Override public JsonSchemaType getAlternateType(JsonSchemaType type) { return type == JsonSchemaType._object ? JsonSchemaType._null : type; } }
{ "content_hash": "4846de988412364033a3ce12ca8c4493", "timestamp": "", "source": "github", "line_count": 79, "max_line_length": 74, "avg_line_length": 20.9873417721519, "alnum_prop": 0.7466827503015682, "repo_name": "smmribeiro/intellij-community", "id": "9478493f301df78444368cfad5053e92969361dd", "size": "1799", "binary": false, "copies": "5", "ref": "refs/heads/master", "path": "plugins/yaml/src/org/jetbrains/yaml/schema/YamlEmptyObjectAdapter.java", "mode": "33188", "license": "apache-2.0", "language": [], "symlink_target": "" }