![]() |
|
Java full language wrapper update 1 - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Java, JVM, & JRE (https://sinister.li/Forum-Java-JVM-JRE) +--- Thread: Java full language wrapper update 1 (/Thread-Java-full-language-wrapper-update-1) |
Java full language wrapper update 1 - ICE_ - 11-21-2012 The wrapper is nearly done! Here is the documentation: CURRENT FUNCTIONS: 44 CURRENCT FILES: 5 -- {file.java, Sys.java, graphics.java, Network.java, Auto.java, checker.java) FORMAT: function -- name -- what it takes(name) 1. print -- Pout -- String(string) 2. print line -- PLout -- String(string) 3. print format -- PFout -- String(string) 4. print error -- Perr -- String(string) 5. print error line -- PLerr -- String(string) 6. print error format -- PFerr -- String(string) 7. current time mills -- MTime -- NOTHING 8. current time nanos -- NTime -- NOTHING 9. system properties -- Prop -- NOTHING 10. program shutdown -- exit -- Integer(register) 11. program pause -- pause -- Integer(time) 12. random number -- random -- Integer(time) 13. new file -- nFile -- String(FileName), String(FileType) 14. new folder -- nFolder -- String(FolderName) 15. new directory -- nDirectory -- String(Directory) 16. new screenshot -- ScreenShot -- String(PictureName) 17. write to file -- nFileWrite -- String(FileName),String(FileType),String(Text),Integer(Amount) 18. read from file -- nFileReader -- String(FileName), String(FileType) 19. file to url -- FiletoURL -- String(FileName), String(FileType) 20. new JFrame -- Frame -- String(Title),Integer(Width),Integer(Height),Integer(XLocation),Integer(YLocation),boolean(SetVisible) 21. new JButton -- Button -- String(Text),Integer(Width),Integer(Height),Integer(XLocation),Integer(YLocation) 22. new JTextField -- TextField -- String(Text),Integer(Width),Integer(Height),Integer(XLocation),Integer(YLocation) 23. new JTextArea -- TextArea -- String(Text),Integer(Width),Integer(Height),Integer(XLocation),Integer(YLocation),boolean(TextWrap) 24. new JLabel -- Label -- String(Text),Integer(Width),Integer(Height),Integer(XLocation),Integer(YLocation) 25. new JRadioButton -- RadioButton -- String(Text),Integer(Width),Integer(Height),Integer(XLocation),Integer(YLocation) 26. new JCheckBox -- CheckBox -- String(Text),Integer(Width),Integer(Height),Integer(XLocation),Integer(YLocation) 27. new JFileChooser -- FileChooser -- String(Text),Integer(Width),Integer(Height),Integer(xLocation),Integer(YLocation) 28. new ChatServer -- Server -- Integer(port) 29. new ChatClient -- Client -- Integer(ip),Integer(port) 30. ping -- Ping -- String(ip) 31. move mouse -- Mousemove -- Integer(XAmount),Integer(YAmount) 32. gets color of pixel -- PixelColor -- Integer(XLocation),Integer(YLocation) 33. move Mouse -- MouseWheel -- Integer(Amount) 34. Press Key -- KeyPress -- Integer(KeyCode) 35. Release Key -- KeyRelease -- Integer(KeyCode) 36. String Equals Ignore Case -- SEIgnoreCase -- String(comparewith), String(compareto) 37. String Equals -- SECase -- String(comparewith), String(compareto) 38. String not equal to -- SNECase -- String(comparewith), String(compareto) 39. Integer greater than -- Greater -- Integer(comparewith), Integer(compareto) 40. Integer less than -- Lesser -- Integer(comparewith), Integer(compareto) 41. Integer equal to -- IE -- Integer(comparewith), Integer(compareto) 42. Integer not equal to -- INE -- Integer(comparewith), Integer(compareto) 43. Integer greater than or equal to -- GreaterE -- Integer(comparewith), Integer(compareto) 44. Integer less than or equal to -- LesserE -- Integer(comparewith), Integer(compareto) |