Created
July 23, 2016 04:29
-
-
Save rane-vedang/a3cfcecd0d9bb63f3738959e6e16536e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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