Skip to content

Commit

Permalink
Fixed, cleaned and tested lists examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Estrella authored and Lucas Estrella committed Feb 26, 2017
1 parent 8c08cb6 commit f7dbed1
Show file tree
Hide file tree
Showing 19 changed files with 13 additions and 774 deletions.
4 changes: 2 additions & 2 deletions Hello_World_Tutorials/Java_CDLL.html
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ <h3>Here's the final code:</h3>
<div class="panel-body">
<div class="tab-content">
<div class="tab-pane fade in active" id="tab1">
<pre w3-include-html="tutorial-source-code/cdllist.java" class="prettyprint"></pre>
<pre w3-include-html="tutorial-source-code/Java_CDLL/cdllist.java" class="prettyprint"></pre>
</div>

<div class="tab-pane fade" id="tab2">
<pre w3-include-html="tutorial-source-code/Student.java" class="prettyprint"></pre>
<pre w3-include-html="tutorial-source-code/Java_CDLL/Student.java" class="prettyprint"></pre>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Hello_World_Tutorials/Java_CSLL.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ <h3>Here's the final code:</h3>
<div class="panel-body">
<div class="tab-content">
<div class="tab-pane fade in active" id="tab1">
<pre w3-include-html="tutorial-source-code/csllist.java" class="prettyprint"></pre>
<pre w3-include-html="tutorial-source-code/Java_CSLL/csllist.java" class="prettyprint"></pre>
</div>

<div class="tab-pane fade" id="tab2">
<pre w3-include-html="tutorial-source-code/Student.java" class="prettyprint"></pre>
<pre w3-include-html="tutorial-source-code/Java_CSLL/Student.java" class="prettyprint"></pre>
</div>
</div>
</div>
4 changes: 2 additions & 2 deletions Hello_World_Tutorials/Java_DLL.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ <h3>Here's the final code:</h3>
<div class="panel-body">
<div class="tab-content">
<div class="tab-pane fade in active" id="tab1">
<pre w3-include-html="tutorial-source-code/dllist.java" class="prettyprint"></pre>
<pre w3-include-html="tutorial-source-code/Java_DLL/dllist.java" class="prettyprint"></pre>
</div>

<div class="tab-pane fade" id="tab2">
<pre w3-include-html="tutorial-source-code/Student.java" class="prettyprint"></pre>
<pre w3-include-html="tutorial-source-code/Java_DLL/Student.java" class="prettyprint"></pre>
</div>
</div>
</div>
4 changes: 2 additions & 2 deletions Hello_World_Tutorials/Java_SLL.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ <h3>Here's the final code:</h3>
<div class="panel-body">
<div class="tab-content">
<div class="tab-pane fade in active" id="tab1">
<pre w3-include-html="tutorial-source-code/sllist.java" class="prettyprint"></pre>
<pre w3-include-html="tutorial-source-code/Java_SLL/sllist.java" class="prettyprint"></pre>
</div>

<div class="tab-pane fade" id="tab2">
<pre w3-include-html="tutorial-source-code/StudentInfo.java" class="prettyprint"></pre>
<pre w3-include-html="tutorial-source-code/Java_SLL/StudentInfo.java" class="prettyprint"></pre>
</div>
</div>
</div>
Expand Down
Binary file modified Hello_World_Tutorials/tutorial-source-code/Java_CDLL.zip
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
/**
* Created by Lucas Estrella on 1/31/2017.
*/
import bridges.base.CircDLelement;
import bridges.connect.Bridges;
import model.Student;

public class Main {

public static void main(String[] args) throws , ParseException {
public static void main(String[] args) throws Exception{

Bridges<String, Student> bridge = new Bridges<String, Student>(6, "YOUR_API_KEY", "YOUR_USER_ID");

Expand Down
Binary file modified Hello_World_Tutorials/tutorial-source-code/Java_CSLL.zip
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
/**
* Created by Lucas Estrella on 1/31/2017.
*/
import bridges.base.CircDLelement;
import bridges.connect.Bridges;
import model.Student;

public class Main {

public static void main(String[] args) throws , ParseException {
public static void main(String[] args) throws Exception {

Bridges<String, Student> bridge = new Bridges<String, Student>(5, "YOUR_API_KEY", "YOUR_USER_ID");

Expand Down
Binary file modified Hello_World_Tutorials/tutorial-source-code/Java_DLL.zip
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import bridges.base.CircDLelement;
import bridges.connect.Bridges;
import model.Student;

public class Main {

public static void main(String[] args) throws , ParseException {
public static void main(String[] args) throws Exception {

Bridges<String, Student> bridge = new Bridges<String, Student>(4, "YOUR_API_KEY", "YOUR_USER_ID");

Expand Down
Binary file modified Hello_World_Tutorials/tutorial-source-code/Java_SLL.zip
Binary file not shown.
11 changes: 2 additions & 9 deletions Hello_World_Tutorials/tutorial-source-code/Java_SLL/sllist.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,13 @@
*/
import bridges.connect.Bridges;
import bridges.base.SLelement;
import com.google.gson.JsonObject;
import model.Student;
import org.json.simple.parser.ParseException;
import provider.StudentProvider;
import util.Auth;

import java.io.FileNotFoundException;

public class Main {

public static void main(String[] args) throws FileNotFoundException, ParseException {
public static void main(String[] args) throws Exception {


Bridges<String, StudentInfo> bridges = new <String, StudentInfo>(1, "YOUR_API_KEY", "YOUR_USER_ID");
Bridges<String, StudentInfo> bridges = new <String, StudentInfo>(3, "YOUR_API_KEY", "YOUR_USER_ID");


/**
Expand Down
161 changes: 0 additions & 161 deletions Hello_World_Tutorials/tutorial-source-code/Student.java

This file was deleted.

65 changes: 0 additions & 65 deletions Hello_World_Tutorials/tutorial-source-code/StudentInfo.java

This file was deleted.

Loading

0 comments on commit f7dbed1

Please sign in to comment.