ecologylab / BigSemanticsWrapperRepository

Repository of wrappers used by the BigSemantics project.
Apache License 2.0
3 stars 9 forks source link

C# code generation for GoogleImageSearch incorrectly adding generic parameter to extended class ImageSearch #41

Open amwebb opened 9 years ago

amwebb commented 9 years ago

Code generator is producing class definition for GoogleImageSearch that does not compile in C#. The following is produced:

public class GoogleImageSearch : ImageSearch<ImageSearchResult>

According to equivalent java version, it should be:

public class GoogleImageSearch : ImageSearch

Although, i'm not sure it is doing the correct thing in java. Seems like ImageSearch should have a generic parameter and GoogleImageSearch should extend ImageSearch.

amwebb commented 9 years ago

What is the status on this? Code generation for C# is still generating code that does not compile.

quyin commented 9 years ago

I'm setting up an environment and plan to get to it next week.

amwebb commented 8 years ago

This is still an issue. When will it be fixed?