Skip to content

Instantly share code, notes, and snippets.

@rane-vedang
Created July 23, 2016 04:29
Show Gist options
  • Save rane-vedang/a3cfcecd0d9bb63f3738959e6e16536e to your computer and use it in GitHub Desktop.
Save rane-vedang/a3cfcecd0d9bb63f3738959e6e16536e to your computer and use it in GitHub Desktop.
package com.guice.test;
import com.google.inject.assistedinject.Assisted;
public interface CarFactory<T extends Car> {
T create(@Assisted String part);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment