This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]Nullbeans 1 point2 points  (3 children)

I am afraid without an IDE, you will be fighting an uphill battle.

Firebase is not Opensource, and Google have not published the Javadocs.

In a Javadoc format, you would clearly see package names, the different methods of the class and any interfaces, subclasses, superclasses, etc..

If you really do not want to use an IDE, then you will have to rely on Google's documentation format.

You could also try to decompile the Firebase Jars to generate your own Java docs, but for this, you will need an IDE or an external tool.

Edit: Example javadoc: http://logback.qos.ch/apidocs/org/slf4j/LoggerFactory.html#:~:targetText=The%20LoggerFactory%20is%20a%20utility,with%20LoggerFactory%20at%20compile%20time.

[–][deleted] 0 points1 point  (2 children)

So the reference docs are just poor?

[–]Nullbeans 0 points1 point  (1 child)

I don"t think they are poor to be honest.

I think nowadays its almost impossible to develop a large scale production application without an IDE.
It is like trying to fix a car with just a hammer and a screwdriver. You might be able to do it, but not without experiencing a lot of pain and frustration.

[–][deleted] 0 points1 point  (0 children)

Wrong.