Skip to content

Latest commit

 

History

History
129 lines (128 loc) · 5.56 KB

README.md

File metadata and controls

129 lines (128 loc) · 5.56 KB

Maven Central Javadocs

java General operations

jGo-Website:https://www.jgo.cloud/
Description :
This class facilitates all the difficult tasks For example,In a code line, you take a screenshot.
JGO is very powerful and it follows the jquery policy :
(Write a little and get a lot)
J - Java
G - General
O - Operations
To learn more, check the website and its documentation.


1 Example - Prints "Welcome in JGO", executes a screenshot with a final function and finally emits an acoustic signal :
    
    public static void main(String[]args){
£._O("Welcome in JGO").screenshot(new £Func() {
@Override
public Object function(Object e) {
£.alert("Hello World");
return null ;
}}).beep().beep();
 }


2 Example - Emits an acoustic signal and opens the windows cmd for 3 times and opens windows notepad :
    
    £.beep().openCmd(3).openNotepad();
    
    


3 Example - Slide panel :
    
    £._S.slide(panel,Effect.VERTICAL,Effect.FAST);
    
    


4 Example - Moves two times the frame :
    
    £._S.moveJFrame(frm, 0, 0,Effect.SLOW).moveJFrame(frm, 300, 300, Effect.FAST);
    
    

Also thanks to jGo you can use jquery in the java code :

jGo/JjDom - Java jQuery Dom


$("#container p").hide("slow").show("slow");


$("p,a,strong").slideToggle(3000);


$("#btn").on("click",new jQueryfunction(){

jquery("p").toggle("slow");

});

Technologies


Phases


Dependencies and Artifacts

To add jGo to your project, include the following dependency in your pom.xml :


<dependency>
    <groupId>cloud.jgo</groupId>
    <artifactId>jGo</artifactId>
    <version>1.0.9</version>
</dependency>


Copyright and License

Copyright © [2018-2019] Marco Martire (www.jgo.cloud) This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. You may obtain a copy of License at : https://www.jgo.cloud/LICENSE.txt To collaborate on this project, you need to do it from the software site.

Open source

Open source jGo è un progetto open source distribuito sotto la licenza liberale del MIT . Il codice sorgente è disponibile su GitHub .

Start using

  1. download the latest jGo version
  2. Read the cookbook
  3. Have fun with jGo !

Help

For questions and info contact:
Original source from https://www.jgo.cloud/ of
Marco Martire