-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56a4cc0
commit a223038
Showing
7 changed files
with
132 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package tiagojavaprogramador.drone.adapter; | ||
/** @author Tiago Alexandre Soares Aragão - [email protected] - http://tiagojavaprogramador.blogspot.com */ | ||
|
||
public class AdapterJTable { | ||
|
||
public static void main(String[] args){ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package tiagojavaprogramador.drone.controller; | ||
/** @author Tiago Alexandre Soares Aragão - [email protected] - http://tiagojavaprogramador.blogspot.com */ | ||
|
||
public class GetJSON { | ||
|
||
public static void main(String[] args){ | ||
|
||
} | ||
} |
20 changes: 17 additions & 3 deletions
20
src/tiagojavaprogramador/drone/controller/GetVideoInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
package tiagojavaprogramador.drone.controller; | ||
/** @author Tiago Alexandre Soares Aragão - [email protected] - http://tiagojavaprogramador.blogspot.com */ | ||
|
||
import tiagojavaprogramador.drone.command.Cmd; | ||
import tiagojavaprogramador.drone.model.Video; | ||
|
||
/** @author Tiago Alexandre Soares Aragão | ||
* [email protected] | ||
* http://tiagojavaprogramador.blogspot.com */ | ||
|
||
public class GetVideoInfo { | ||
|
||
public static void main(String[] args){ | ||
|
||
private String url; | ||
|
||
//recebe url do youtube com id do video | ||
public GetVideoInfo(String url) { | ||
this.url = url; | ||
} | ||
|
||
Cmd cmd; | ||
Video video; | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters