GWT 2.5.0.rc1

Uses of Class
com.google.gwt.core.ext.UnableToCompleteException

Packages that use UnableToCompleteException
com.google.gwt.benchmarks Classes for benchmarking support. 
com.google.gwt.core.ext Classes used to extend the GWT compiler. 
com.google.gwt.core.ext.linker Classes for writing Linkers. 
com.google.gwt.core.linker A package containing implementations of the GWT bootstrap linkers. 
com.google.gwt.i18n.linker   
com.google.gwt.i18n.rebind.format Implementations for various MessageCatalogFormat implementations, which are used to generate files for translation or to read translated messages. 
com.google.gwt.precompress.linker A linker that precompresses the public artifacts that it sees. 
com.google.gwt.resources.ext This package contains extension hooks for adding new resource types to ClientBundle. 
com.google.gwt.rpc.linker Classes used to implement RPC. 
com.google.gwt.uibinder.attributeparsers Classes that parse XML attribute values, turning them into valid Java expressions. 
com.google.gwt.uibinder.elementparsers Classes that parse XML elements, using the context to generate widget initialization code. 
com.google.gwt.user.linker.rpc Classes used to provide information about RPC for a GWT application. 
com.google.gwt.util.regexfilter Classes used to implement filtering by a sequence of regular expressions preceded by + or - signs. 
 

Uses of UnableToCompleteException in com.google.gwt.benchmarks
 

Methods in com.google.gwt.benchmarks that throw UnableToCompleteException
static void BenchmarkShell.runTest(GWTTestCase testCase, junit.framework.TestResult testResult)
           
static void BenchmarkShell.runTest(java.lang.String moduleName, junit.framework.TestCase testCase, junit.framework.TestResult testResult)
          Deprecated. use BenchmarkShell.runTest(GWTTestCase, TestResult) instead
 

Uses of UnableToCompleteException in com.google.gwt.core.ext
 

Methods in com.google.gwt.core.ext that throw UnableToCompleteException
 void DelegatingGeneratorContext.commitArtifact(TreeLogger logger, Artifact<?> artifact)
           
 void GeneratorContext.commitArtifact(TreeLogger logger, Artifact<?> artifact)
          Add an Artifact to the ArtifactSet that will be presented to the Linker chain at the end of the compilation cycle.
 GeneratedResource DelegatingGeneratorContext.commitResource(TreeLogger logger, java.io.OutputStream os)
           
 GeneratedResource GeneratorContext.commitResource(TreeLogger logger, java.io.OutputStream os)
          Commits resource generation begun with GeneratorContext.tryCreateResource(TreeLogger, String).
abstract  java.lang.String Generator.generate(TreeLogger logger, GeneratorContext context, java.lang.String typeName)
          Generate a default constructible subclass of the requested type.
 java.lang.String IncrementalGenerator.generate(TreeLogger logger, GeneratorContext context, java.lang.String typeName)
          This method overrides Generator.generate(com.google.gwt.core.ext.TreeLogger, com.google.gwt.core.ext.GeneratorContext, java.lang.String), and is included only for backwards compatibility.
abstract  RebindResult IncrementalGenerator.generateIncrementally(TreeLogger logger, GeneratorContext context, java.lang.String typeName)
          Incrementally generate a default constructible subclass of the requested type.
static RebindResult IncrementalGenerator.generateNonIncrementally(TreeLogger logger, Generator generator, GeneratorContext context, java.lang.String typeName)
          A static helper method to wrap a non-incremental generator's result.
 ArtifactSet Linker.link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts)
          This method is invoked for linkers not annotated with Shardable.
 ArtifactSet Linker.link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts, boolean onePermutation)
           This method is invoked for linkers annotated with Shardable.
 java.lang.String LinkerContext.optimizeJavaScript(TreeLogger logger, java.lang.String jsProgram)
          Applies optimizations to a JavaScript program.
abstract  void ServletContainer.refresh()
          Causes the web app to pick up changes made within the app root dir while running.
 ArtifactSet Linker.relink(TreeLogger logger, LinkerContext context, ArtifactSet newArtifacts)
          Re-invoke the Linker with newly generated artifacts.
abstract  void ServletContainer.stop()
          Stops the running servlet container.
 java.io.OutputStream DelegatingGeneratorContext.tryCreateResource(TreeLogger logger, java.lang.String partialPath)
           
 java.io.OutputStream GeneratorContext.tryCreateResource(TreeLogger logger, java.lang.String partialPath)
          Attempts to get an OutputStream so that the caller can write file contents into the named file underneath the compilation output directory.
 

Uses of UnableToCompleteException in com.google.gwt.core.ext.linker
 

Methods in com.google.gwt.core.ext.linker that throw UnableToCompleteException
protected  SyntheticArtifact AbstractLinker.emitBytes(TreeLogger logger, byte[] what, java.lang.String partialPath)
          A helper method to create an artifact from an array of bytes.
protected  SyntheticArtifact AbstractLinker.emitBytes(TreeLogger logger, byte[] what, java.lang.String partialPath, long lastModified)
          A helper method to create an artifact from an array of bytes.
protected  SyntheticArtifact AbstractLinker.emitInputStream(TreeLogger logger, java.io.InputStream what, java.lang.String partialPath)
          A helper method to create an artifact to emit the contents of an InputStream.
protected  SyntheticArtifact AbstractLinker.emitInputStream(TreeLogger logger, java.io.InputStream what, java.lang.String partialPath, long lastModified)
          A helper method to create an artifact to emit the contents of an InputStream.
protected  SyntheticArtifact AbstractLinker.emitString(TreeLogger logger, java.lang.String what, java.lang.String partialPath)
          A helper method to create an artifact to emit a String.
protected  SyntheticArtifact AbstractLinker.emitString(TreeLogger logger, java.lang.String what, java.lang.String partialPath, long lastModified)
          A helper method to create an artifact to emit a String.
protected  SyntheticArtifact AbstractLinker.emitWithStrongName(TreeLogger logger, byte[] what, java.lang.String prefix, java.lang.String suffix)
          A helper method to create an artifact from an array of bytes with a strong name.
protected  SyntheticArtifact AbstractLinker.emitWithStrongName(TreeLogger logger, byte[] what, java.lang.String prefix, java.lang.String suffix, long lastModified)
          A helper method to create an artifact from an array of bytes with a strong name.
 java.lang.String PropertyProviderGenerator.generate(TreeLogger logger, java.util.SortedSet<java.lang.String> possibleValues, java.lang.String fallback, java.util.SortedSet<ConfigurationProperty> configProperties)
          Generate a property provider.
abstract  java.io.InputStream EmittedArtifact.getContents(TreeLogger logger)
          Provides access to the contents of the EmittedResource.
 java.io.InputStream SyntheticArtifact.getContents(TreeLogger logger)
           
 java.lang.String SelectionProperty.getPropertyProvider(TreeLogger logger, java.util.SortedSet<ConfigurationProperty> configProperties)
          Returns a raw function body that provides the runtime value to be used for a deferred binding property.
 void EmittedArtifact.writeTo(TreeLogger logger, java.io.OutputStream out)
          Provides access to the contents of the EmittedResource.
 void SyntheticArtifact.writeTo(TreeLogger logger, java.io.OutputStream out)
           
 

Uses of UnableToCompleteException in com.google.gwt.core.linker
 

Methods in com.google.gwt.core.linker that throw UnableToCompleteException
protected  java.util.Collection<Artifact<?>> SingleScriptLinker.doEmitCompilation(TreeLogger logger, LinkerContext context, CompilationResult result, ArtifactSet artifacts)
           
protected  void SymbolMapsLinker.doEmitSymbolMap(TreeLogger logger, ArtifactSet artifacts, CompilationResult result, java.io.ByteArrayOutputStream out)
          Override to change the manner in which the symbol map is emitted.
protected  void SymbolMapsLinker.doWriteSymbolMap(TreeLogger logger, CompilationResult result, java.io.PrintWriter pw)
          Override to change the format of the symbol map.
protected  EmittedArtifact SingleScriptLinker.emitSelectionScript(TreeLogger logger, LinkerContext context, ArtifactSet artifacts)
           
protected  SyntheticArtifact SymbolMapsLinker.emitSourceMapString(TreeLogger logger, java.lang.String contents, java.lang.String partialPath)
           
protected  java.lang.String CrossSiteIframeLinker.fillSelectionScriptTemplate(java.lang.StringBuffer ss, TreeLogger logger, LinkerContext context, ArtifactSet artifacts, CompilationResult result)
           
protected  java.lang.String SingleScriptLinker.getCompilationExtension(TreeLogger logger, LinkerContext context)
          Unimplemented.
protected  java.lang.String CrossSiteIframeLinker.getModulePrefix(TreeLogger logger, LinkerContext context, java.lang.String strongName)
           
protected  java.lang.String IFrameLinker.getModulePrefix(TreeLogger logger, LinkerContext context, java.lang.String strongName)
           
protected  java.lang.String SingleScriptLinker.getModulePrefix(TreeLogger logger, LinkerContext context, java.lang.String strongName)
          Unimplemented.
protected  java.lang.String IFrameLinker.getModulePrefix(TreeLogger logger, LinkerContext context, java.lang.String strongName, int numFragments)
           
protected  java.lang.String SingleScriptLinker.getModuleSuffix(TreeLogger logger, LinkerContext context)
          Unimplemented.
protected  java.lang.String SingleScriptLinker.getSelectionScriptTemplate(TreeLogger logger, LinkerContext context)
           
protected  void CrossSiteIframeLinker.includeJs(java.lang.StringBuffer selectionScript, TreeLogger logger, java.lang.String jsSource, java.lang.String templateVar)
           
 ArtifactSet SymbolMapsLinker.link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts)
          Included to support legacy non-shardable subclasses.
 ArtifactSet SymbolMapsLinker.link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts, boolean onePermutation)
           
protected  void CrossSiteIframeLinker.maybeAddHostedModeFile(TreeLogger logger, LinkerContext context, ArtifactSet artifacts, CompilationResult result)
           
protected  java.lang.String CrossSiteIframeLinker.wrapPrimaryFragment(TreeLogger logger, LinkerContext context, java.lang.String script, ArtifactSet artifacts, CompilationResult result)
           
 

Uses of UnableToCompleteException in com.google.gwt.i18n.linker
 

Methods in com.google.gwt.i18n.linker that throw UnableToCompleteException
 java.lang.String LocalePropertyProviderGenerator.generate(TreeLogger logger, java.util.SortedSet<java.lang.String> possibleValues, java.lang.String fallback, java.util.SortedSet<ConfigurationProperty> configProperties)
           
protected  void LocalePropertyProviderGenerator.generateCookieLookup(TreeLogger logger, com.google.gwt.user.rebind.SourceWriter body, java.lang.String cookieName)
          Generate JS code that looks up the locale value from a cookie.
protected  void LocalePropertyProviderGenerator.generateInheritanceLookup(TreeLogger logger, com.google.gwt.user.rebind.SourceWriter body)
          Generate JS code that takes the value of the "locale" variable and finds parent locales until the value is a supported locale or the default locale.
protected  void LocalePropertyProviderGenerator.generateMetaLookup(TreeLogger logger, com.google.gwt.user.rebind.SourceWriter body)
          Generate JS code to fetch the locale from a meta property.
protected  void LocalePropertyProviderGenerator.generateQueryParamLookup(TreeLogger logger, com.google.gwt.user.rebind.SourceWriter body, java.lang.String queryParam)
          Generate JS code to get the locale from a query parameter.
protected  void LocalePropertyProviderGenerator.generateUserAgentLookup(TreeLogger logger, com.google.gwt.user.rebind.SourceWriter body)
          Generate JS code to fetch the locale from the user agent's compile-time locale.
 

Uses of UnableToCompleteException in com.google.gwt.i18n.rebind.format
 

Methods in com.google.gwt.i18n.rebind.format that throw UnableToCompleteException
 void MessageCatalogFormat.write(TreeLogger logger, java.lang.String locale, com.google.gwt.i18n.rebind.AbstractResource.ResourceList resourceList, java.io.PrintWriter out, JClassType messageInterface)
          Write a message catalog file.
 

Uses of UnableToCompleteException in com.google.gwt.precompress.linker
 

Methods in com.google.gwt.precompress.linker that throw UnableToCompleteException
 ArtifactSet PrecompressLinker.link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts, boolean onePermutation)
           
 

Uses of UnableToCompleteException in com.google.gwt.resources.ext
 

Methods in com.google.gwt.resources.ext that throw UnableToCompleteException
abstract  java.lang.String AbstractResourceGenerator.createAssignment(TreeLogger logger, ResourceContext context, JMethod method)
           
 java.lang.String ResourceGenerator.createAssignment(TreeLogger logger, ResourceContext context, JMethod method)
          Produce the right-hand-side of a Java assignment expression to provide the singleton instance object for a particular resource.
 void AbstractResourceGenerator.createFields(TreeLogger logger, ResourceContext context, ClientBundleFields fields)
          A no-op implementation.
 void ResourceGenerator.createFields(TreeLogger logger, ResourceContext context, ClientBundleFields fields)
          The ResourceGenerator can create fields within the implementation of the bundle type.
 java.lang.String ResourceContext.deploy(java.lang.String suggestedFileName, java.lang.String mimeType, byte[] data, boolean forceExternal)
          Cause a specific collection of bytes to be available in the program's compiled output.
 java.lang.String ResourceContext.deploy(java.net.URL resource, boolean forceExternal)
          Deprecated. use ResourceContext.deploy(URL, String, boolean) instead
 java.lang.String ResourceContext.deploy(java.net.URL resource, java.lang.String mimeType, boolean forceExternal)
          Cause a specific collection of bytes to be available in the program's compiled output.
static java.net.URL[] ResourceGeneratorUtil.findResources(TreeLogger logger, java.lang.ClassLoader classLoader, ResourceContext context, JMethod method, java.lang.String[] defaultSuffixes)
          Find all resources referenced by a method in a bundle.
static java.net.URL[] ResourceGeneratorUtil.findResources(TreeLogger logger, ResourceContext context, JMethod method)
          Find all resources referenced by a method in a bundle.
static java.net.URL[] ResourceGeneratorUtil.findResources(TreeLogger logger, ResourceContext context, JMethod method, java.lang.String[] defaultSuffixes)
          Find all resources referenced by a method in a bundle.
 void AbstractResourceGenerator.finish(TreeLogger logger, ResourceContext context)
          A no-op implementation.
 void ResourceGenerator.finish(TreeLogger logger, ResourceContext context)
          Called at the end of the resource generation phase and can be used to perform cleanup.
 void AbstractResourceGenerator.init(TreeLogger logger, ResourceContext context)
          A no-op implementation.
 void ResourceGenerator.init(TreeLogger logger, ResourceContext context)
          Initialize the ResourceGenerator with the generation context that will remain valid for the duration of the resource-generation phase.
 void AbstractResourceGenerator.prepare(TreeLogger logger, ResourceContext context, ClientBundleRequirements requirements, JMethod method)
          A no-op implementation.
 void ResourceGenerator.prepare(TreeLogger logger, ResourceContext context, ClientBundleRequirements requirements, JMethod method)
          Called once for each method the ResourceGenerator is expected to handle.
 

Uses of UnableToCompleteException in com.google.gwt.rpc.linker
 

Methods in com.google.gwt.rpc.linker that throw UnableToCompleteException
 ArtifactSet ClientOracleLinker.link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts, boolean onePermutation)
           
 

Uses of UnableToCompleteException in com.google.gwt.uibinder.attributeparsers
 

Methods in com.google.gwt.uibinder.attributeparsers that throw UnableToCompleteException
 java.lang.String AttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
          Parse the given attribute value.
 java.lang.String BooleanAttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 java.lang.String DoubleAttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 java.lang.String EnumAttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 java.lang.String HorizontalAlignmentConstantParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 java.lang.String IntAttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 java.lang.String IntPairAttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 java.lang.String LengthAttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String lengthStr)
           
 java.lang.String SafeUriAttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 java.lang.String StrictAttributeParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
          If the value holds a single field reference "{like.this}", converts it to a Java Expression.
 java.lang.String TextAlignConstantParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 java.lang.String VerticalAlignmentConstantParser.parse(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
           
 

Uses of UnableToCompleteException in com.google.gwt.uibinder.elementparsers
 

Methods in com.google.gwt.uibinder.elementparsers that throw UnableToCompleteException
protected  java.lang.String HtmlPlaceholderInterpreter.consumePlaceholderInnards(com.google.gwt.uibinder.rebind.XMLElement elem)
           
protected  java.lang.String TextPlaceholderInterpreter.consumePlaceholderInnards(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String ComputedAttributeInterpreter.Delegate.getAttributeToken(com.google.gwt.uibinder.rebind.XMLAttribute attribute)
           
 java.lang.String ComputedAttributeInterpreter.DefaultDelegate.getAttributeToken(com.google.gwt.uibinder.rebind.XMLAttribute attribute)
           
 java.lang.String UiTextInterpreter.Delegate.getAttributeToken(com.google.gwt.uibinder.rebind.XMLAttribute attribute)
           
(package private)  void DialogBoxParser.handleConstructorArgs(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer, com.google.gwt.uibinder.rebind.XMLElement customCaption)
          If this is DialogBox (not a subclass), parse constructor args and generate the constructor call.
 java.lang.String AttributeMessageInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String ComputedAttributeInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String FieldInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String HtmlInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String HtmlMessageInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String HtmlPlaceholderInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 T InterpreterPipe.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
          Interpreters are fired in the order they were handed to the constructor.
 java.lang.String IsRenderableInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String TextInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String UiTextInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String WidgetInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
 java.lang.String WidgetPlaceholderInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem)
           
protected  boolean DialogBoxParser.isCaption(com.google.gwt.uibinder.rebind.UiBinderWriter writer, com.google.gwt.uibinder.rebind.XMLElement element)
          Determines if the element implements Caption.
 void AbsolutePanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void AttributeMessageParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void BeanParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
          Generates code to initialize all bean attributes on the given element.
 void CellPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void CustomButtonParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void DateLabelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void DialogBoxParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void DisclosurePanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement panelElem, java.lang.String panelField, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void DockLayoutPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void DockPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void DomElementParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void ElementParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
          Parse the given element, generating the code to initialize it from the element's attributes and children.
 void GridParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void HTMLPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void HasAlignmentParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void HasHTMLParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void HasTextParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void HasTreeItemsParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void HasWidgetsParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void ImageParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void IsEmptyParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void LayoutPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void LazyPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void ListBoxParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void MenuBarParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void MenuItemParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void NumberLabelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void RenderablePanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void StackLayoutPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement panelElem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void StackPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void TabLayoutPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement panelElem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void TabPanelParser.parse(com.google.gwt.uibinder.rebind.XMLElement panelElem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void UIObjectParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
 void UiChildParser.parse(com.google.gwt.uibinder.rebind.XMLElement elem, java.lang.String fieldName, JClassType type, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
           
protected static void CellPanelParser.parseCellAttributes(com.google.gwt.uibinder.rebind.XMLElement cellElem, java.lang.String fieldName, com.google.gwt.uibinder.rebind.FieldWriter childField, com.google.gwt.uibinder.rebind.UiBinderWriter writer)
          Parses the alignment and size attributes common to all CellPanels.
 java.lang.String InterpreterPipe.postProcess(java.lang.String consumedText)
          Called by various XMLElement consumeInner*() methods after all elements have been handed to InterpreterPipe.interpretElement(com.google.gwt.uibinder.rebind.XMLElement).
 java.lang.String WidgetPlaceholderInterpreter.postProcess(java.lang.String consumed)
          Called by XMLElement.consumeInnerHtml(com.google.gwt.uibinder.rebind.XMLElement.Interpreter) after all elements have been handed to WidgetPlaceholderInterpreter.interpretElement(com.google.gwt.uibinder.rebind.XMLElement).
 

Uses of UnableToCompleteException in com.google.gwt.user.linker.rpc
 

Methods in com.google.gwt.user.linker.rpc that throw UnableToCompleteException
 ArtifactSet RpcLogLinker.link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts, boolean onePermutation)
           
 ArtifactSet RpcPolicyManifestLinker.link(TreeLogger logger, LinkerContext context, ArtifactSet artifacts, boolean onePermutation)
           
 

Uses of UnableToCompleteException in com.google.gwt.util.regexfilter
 

Constructors in com.google.gwt.util.regexfilter that throw UnableToCompleteException
RegexFilter(TreeLogger logger, java.util.List<java.lang.String> values)
           
 


GWT 2.5.0.rc1