All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.dev.javac.UnitCache Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

There is a newer version: 8.27.1
Show newest version
/*
 * Copyright 2011 Google Inc.
 *
 * 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 com.google.gwt.dev.javac;

import com.google.gwt.core.ext.TreeLogger;

/**
 * An interface for caching {@link CompilationUnit}s. Alternate implementations may cache only in
 * memory or both cache in memory and persist to disk.
* * All implementations must be reusable across multiple compiles of potentially different * applications within the same process. Some JUnitShell test suite execution exercises exactly this * path. */ public interface UnitCache { /** * Adds a {@link CompilationUnit} to the cache. */ void add(CompilationUnit newUnit); /** * Adds a new entry into the cache, but marks it as already coming from a * persistent archive. This means it doesn't need to be saved out to disk in a * persistent implementation of the cache. */ void addArchivedUnit(CompilationUnit newUnit); /** * Each run of the compiler should call {@link #cleanup(TreeLogger)} when * finished adding units to the cache so that cache files from previous runs * can be purged from a persistent cache. */ void cleanup(TreeLogger logger); /** * Lookup a {@link CompilationUnit} by {@link ContentId}. */ CompilationUnit find(ContentId contentId); /** * Lookup a {@link CompilationUnit} by resource path. This should include any path prefix that may * have been stripped to reroot the resource.
* * Contained CompilationUnits must be keyed on this combination of path prefix and path to avoid * collision when reusing a UnitCache instance between compiles that do and do not SuperSource a * given class. * * @see CompilationUnit#getResourcePath() */ CompilationUnit find(String resourcePath); /** * Remove a {@link CompilationUnit} from the cache. */ void remove(CompilationUnit unit); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy