Example usage for com.google.common.collect ForwardingObject subclass-usage

List of usage examples for com.google.common.collect ForwardingObject subclass-usage

Introduction

In this page you can find the example usage for com.google.common.collect ForwardingObject subclass-usage.

Usage

From source file de.cosmocode.palava.jpa.ForwardingEntityManager.java

/**
 * Abstract {@link Decorator} for {@link EntityManager}s.
 *
 * @author Willi Schoenborn
 */
public abstract class ForwardingEntityManager extends ForwardingObject implements EntityManager {

From source file no.ssb.vtl.test.RandomizedDataset.java

/**
 *
 */
public class RandomizedDataset extends ForwardingObject implements Dataset {

    private final Random random;

From source file com.palantir.common.collect.IterableView.java

/**
 * A wrapper for an iterable that gives it super chaining powers. And a nice toString.
 *
 * @author carrino
 */
public abstract class IterableView<T> extends ForwardingObject implements Iterable<T> {

From source file org.marketcetera.photon.strategy.engine.ui.StrategyEnginesContentProvider.java

/**
 * Tree content provider for strategy engines and their deployed strategies. It
 * expects as input an {@link IObservableList} of {@link StrategyEngine}
 * objects. The input list will not be modified.
 * <p>
 * Instances of this class are thread confined. They can only be instantiated

From source file org.eclipse.xtext.xbase.typesystem.internal.ForwardingResolvedTypes.java

/**
 * @author Sebastian Zarnekow - Initial contribution and API
 */
public abstract class ForwardingResolvedTypes extends ForwardingObject implements IResolvedTypes {

    @Override

From source file com.palantir.atlasdb.keyvalue.impl.ForwardingKeyValueService.java

public abstract class ForwardingKeyValueService extends ForwardingObject implements KeyValueService {
    @Override
    protected abstract KeyValueService delegate();

    @Override
    public Collection<? extends KeyValueService> getDelegates() {

From source file com.sam.moca.advice.ForwardingDBAdapter.java

/**
 * TODO Class Description
 * 
 * Copyright (c) 2011 Sam Corporation
 * All Rights Reserved
 * 

From source file io.github.mywarp.mywarp.warp.ForwardingPopulatableWarpManager.java

/**
 * Forwards all method calls to another PopulatableWarpManager. Subclasses should override one or more methods to modify
 * the behavior of the backing PopulatableWarpManager as desired per the
 * <a href="http://en.wikipedia.org/wiki/Decorator_pattern">
 * decorator pattern</a>.
 */

From source file com.palantir.common.base.BatchingVisitableView.java

public abstract class BatchingVisitableView<T> extends ForwardingObject implements BatchingVisitable<T> {

    private BatchingVisitableView() {
        // don't expose the constructor publicly
    }

From source file org.jclouds.rest.suppliers.MemoizedRetryOnTimeOutButNotOnAuthorizationExceptionSupplier.java

/**
 * This will retry the supplier if it encounters a timeout exception, but not if it encounters an
 * AuthorizationException.
 * <p/>
 * A shared exception reference is used so that anyone who encounters an authorizationexception will be short-circuited.
 * This prevents accounts from being locked out.