sudeep87 / uimafit

Automatically exported from code.google.com/p/uimafit
0 stars 0 forks source link

ExternalResources loaded through a ExternalResourceLocator should not need to declare "api" #73

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
It should be possible to write

      @ExternalResource(key = "foo", api = ExternalResourceLocator.class) 
      private Foo foo;

simply as

      @ExternalResource(key = "foo") 
      private Foo foo;

... better even without the key="foo" - see issue 71

Original issue reported on code.google.com by richard.eckart on 25 Mar 2011 at 10:27

GoogleCodeExporter commented 8 years ago
Changed ExternalResourceInitializer to allow omitting the api parameter in this 
case.

Original comment by richard.eckart on 25 Mar 2011 at 10:32

GoogleCodeExporter commented 8 years ago

Original comment by richard.eckart on 25 Mar 2011 at 10:36