Is it possible to have a java compiler in unity? [closed] - api

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I have this homework where I should create an android application with a java compiler in it. the application i'm supposed to do is an educational application, with tutorials in it, my main problem is how to place a compiler in Unity. I've been searching the whole internet but can't seem to find what i need.

What do you mean by "place a compiler"? do you want to to use a compiled unity program that can compile java code or do you want to compile a unity project with java?
I think thats not a thing you can get a fast answer on how to do it.
If you have a functioning java compiler in whatever language you can bind to C# you for sure can compile java code with a c# application.
Edit:
And ofcourse its possible to write kind of a "java syntax string to c# parser" in c# on a really basic level yourself, if that is what you want.

Related

Automatic documentation of Fortran functions, modules and subroutines [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there anything like Javadoc for documenting Fortran code? How does one document the API for the many functions they have so that they can find what they want more easily?
Not "standard", but I've used a program called "robodoc" that is able to work with Fortran.
Nowadays I believe Doxygen supports Fortran as well, which IMHO is a better tool than robodoc.
As janneb mentioned "robodoc" is clean, easy and hence useful. But you it will not analyze your program and you have to do everything yourself. On the other hand, Doxygen have incorporated the modern Fortran features(derived data types, type bound procedures, ... ) and just like C++ you can get an analysis of your program along with graphs etc.

clojure.lang, etc. api [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Are the JavaDocs for clojure.lang, etc. available online? Do I need to build it myself from the Clojure source?
Thanks.
if you want descriptions for functions and even examples, visit ClojureDocs
you can even contribute ;)
Javadocs don't exist, per se. If you look at the Java source code, it's very sparsely documented. Certainly you could generate a skeleton yourself, but it probably wouldn't be all that useful anyway as much of the language is self-implemented (in clojure), using Java mostly for bootstrapping the core functionality. I don't think clojure.lang package is really intended to be used directly.
To learn about Clojure functions you can:
Use (doc) and (find-doc) from a repl
Use the API reference at clojure.org
See ClojureDocs, per #Belun's answer

How to create programming flowchart/documentation from VB.NET source code? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
what tools do you use to create programming flowchart/documentation from VB.NET source code? There are absolutely no comments/documentation at present. I am a beginner, i.e. I tried Sandcastle but it is way over my head and could not get it going, not even with GUI.
Fatesoft's CodeVisual To Flowchart is OK but it is almost the same as the code and I still don't understand the code.
Convert VB.NET to Csharp using http://converter.telerik.com/
Use Code Rocket to both generate documentation and flowchart http://www.rapidqualitysystems.com/Products/CodeRocketNET
You can use the built-in XML documentation, described here
I have always enjoyed the output of doxygen
And now I read that you need it for VB .... sigh
I guess you can look at it and think about how awesome it would have been to use ;)

FxCop or other util to require inline docs in VB.NET? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm starting a new project; trying to be more strict than previous ones. I've set warnings as errors in the build I've added FxCop to PostBuild. The one last thing on my list os require people to add inline docs for all classes/non-private methods/properties.
Is there a custom FxCop rule or another exe I can run in the post build to check? I've having a hard time finding something, which is surprising.
Bingo: http://www.ookii.org/software/xmlcommentchecker/
The VB.NET compiler doesn't help much in this regard as I've only ever seen it issue a warning for something like <param name="foo">...</param> when you don't have a parameter called "foo" in the function, but nothing at all for missing tags which is annoying.
The method I use on my projects is to use the build log from Sandcastle and grep it for the warnings it spits out since they're faily easy to match (they all begin with something like "Warn: ShowMissingComponent:" and it will issue a warnings for all sorts of missing tags in your code.

looking Rapid application development / application builder for non programmers [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
is there any tool that can produce me simple application something like access
but without the need for access or open office to be installed
some thing that will save the data in real stand alone executable file with embedded simple db for non programmers.
I believe Filemaker does what you want. It's not free, however you could always download the trial and see if it fits.
If you are familiar with Access, you should look into compiling it into a standalone app using the Access runtime. Here's a thread on it.
Bear in mind that non-programmers will be quite limited in what they'll be able to accomplish, so calling this "rapid application development" is probably way overstating things.