Reset author name to chosen name ✨
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
||||
<groupId>edu.slcc.asdv.chloe</groupId>
|
||||
<artifactId>DAO</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
@@ -9,6 +9,6 @@
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>20</maven.compiler.source>
|
||||
<maven.compiler.target>20</maven.compiler.target>
|
||||
<exec.mainClass>edu.slcc.asdv.caleb.dao.DAO</exec.mainClass>
|
||||
<exec.mainClass>edu.slcc.asdv.chloe.dao.DAO</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -8,7 +8,7 @@ import java.util.Collection;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public interface DAO<T> {
|
||||
public void create(T t);
|
||||
|
||||
@@ -6,7 +6,7 @@ package DAO;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public interface Exam<T> {
|
||||
void editExam(T t);
|
||||
|
||||
@@ -6,7 +6,7 @@ package DAO;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public abstract class ExamFactory<T extends Keyable> {
|
||||
public abstract Exam<T> createExam();
|
||||
|
||||
@@ -6,7 +6,7 @@ package DAO;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class ExamFactoryOutlet<K, V extends Keyable> extends ExamFactory<Keyable> {
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ package DAO;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public interface Keyable<K> {
|
||||
public K getKey();
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class MathExam implements Keyable<MathExam> {
|
||||
ArrayList<Object> fields = new ArrayList<Object>();
|
||||
|
||||
@@ -6,7 +6,7 @@ package DAO;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class Test {
|
||||
public static void main(String[] args)
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.dao.factory_pizza;
|
||||
package edu.slcc.asdv.chloe.dao.factory_pizza;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class CheezePizza implements Pizza {
|
||||
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.dao.factory_pizza;
|
||||
package edu.slcc.asdv.chloe.dao.factory_pizza;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class ChickenPizza implements Pizza {
|
||||
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.dao.factory_pizza;
|
||||
package edu.slcc.asdv.chloe.dao.factory_pizza;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public interface Pizza<T> {
|
||||
public void prepare(T t);
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.dao.factory_pizza;
|
||||
package edu.slcc.asdv.chloe.dao.factory_pizza;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class PizzaFactory {
|
||||
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.dao.factory_pizza;
|
||||
package edu.slcc.asdv.chloe.dao.factory_pizza;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class PizzaStore {
|
||||
public Pizza orderPizza(String type) throws Exception {
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.dao.factory_pizza;
|
||||
package edu.slcc.asdv.chloe.dao.factory_pizza;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class TestPizza {
|
||||
public static void main(String[] args) throws Exception
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.dao.factory_pizza;
|
||||
package edu.slcc.asdv.chloe.dao.factory_pizza;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class VeggiePizza implements Pizza {
|
||||
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
*/
|
||||
package factory_generic_pizza;
|
||||
|
||||
import edu.slcc.asdv.caleb.dao.factory_pizza.*;
|
||||
import edu.slcc.asdv.chloe.dao.factory_pizza.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class Pizza<T> {
|
||||
public void prepare(Object t)
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
*/
|
||||
package factory_generic_pizza;
|
||||
|
||||
import edu.slcc.asdv.caleb.dao.factory_pizza.*;
|
||||
import edu.slcc.asdv.chloe.dao.factory_pizza.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class PizzaFactory {
|
||||
public static <T> Pizza<T> createPizza(T t)
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
*/
|
||||
package factory_generic_pizza;
|
||||
|
||||
import edu.slcc.asdv.caleb.dao.factory_pizza.*;
|
||||
import edu.slcc.asdv.chloe.dao.factory_pizza.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class PizzaStore {
|
||||
public Pizza orderPizza(String type) throws Exception {
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
*/
|
||||
package factory_generic_pizza;
|
||||
|
||||
import edu.slcc.asdv.caleb.dao.factory_pizza.*;
|
||||
import edu.slcc.asdv.chloe.dao.factory_pizza.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class TestPizza {
|
||||
public static void main(String[] args) throws Exception
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
||||
<groupId>edu.slcc.asdv.chloe</groupId>
|
||||
<artifactId>DataStructures</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
@@ -9,6 +9,6 @@
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<exec.mainClass>edu.slcc.asdv.caleb.datastructures.DataStructures</exec.mainClass>
|
||||
<exec.mainClass>edu.slcc.asdv.chloe.datastructures.DataStructures</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
*/
|
||||
|
||||
package edu.slcc.asdv.caleb.datastructures;
|
||||
package edu.slcc.asdv.chloe.datastructures;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class DataStructures {
|
||||
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.datastructures;
|
||||
package edu.slcc.asdv.chloe.datastructures;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public interface OneToMany<One, Many>
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package edu.slcc.asdv.caleb.datastructures;
|
||||
package edu.slcc.asdv.chloe.datastructures;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
||||
<groupId>edu.slcc.asdv.chloe</groupId>
|
||||
<artifactId>HashMapASDV</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
@@ -9,6 +9,6 @@
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>20</maven.compiler.source>
|
||||
<maven.compiler.target>20</maven.compiler.target>
|
||||
<exec.mainClass>edu.slcc.asdv.caleb.hashmapasdv.HashMapASDV</exec.mainClass>
|
||||
<exec.mainClass>edu.slcc.asdv.chloe.hashmapasdv.HashMapASDV</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
*/
|
||||
|
||||
package edu.slcc.asdv.caleb.hashmapasdv;
|
||||
package edu.slcc.asdv.chloe.hashmapasdv;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class HashMapASDV {
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ annotation.processing.processors.list=
|
||||
annotation.processing.run.all.processors=true
|
||||
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
|
||||
application.title=HashMapASDV_Ant
|
||||
application.vendor=caleb
|
||||
application.vendor=chloe
|
||||
build.classes.dir=${build.dir}/classes
|
||||
build.classes.excludes=**/*.java,**/*.form
|
||||
# This directory is removed when the project is cleaned:
|
||||
|
||||
@@ -9,7 +9,7 @@ import java.util.Objects;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
class EntryASDV<K, V> implements Entry<K, V>, Comparable<K>
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ package hashmapasdv_ant;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
import java.io.Serializable;
|
||||
import java.math.BigInteger;
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
||||
<artifactId>Hashing_CalebFontenot</artifactId>
|
||||
<groupId>edu.slcc.asdv.chloe</groupId>
|
||||
<artifactId>Hashing_ChloeFontenot</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>20</maven.compiler.source>
|
||||
<maven.compiler.target>20</maven.compiler.target>
|
||||
<exec.mainClass>edu.slcc.asdv.caleb.hashing_calebfontenot.Hashing_CalebFontenot</exec.mainClass>
|
||||
<exec.mainClass>edu.slcc.asdv.chloe.hashing_chloefontenot.Hashing_ChloeFontenot</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
*/
|
||||
|
||||
package edu.slcc.asdv.caleb.hashing_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.hashing_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
import asdv.ListASDV;
|
||||
import java.util.ArrayList;
|
||||
@@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
||||
<artifactId>MP1_ManyToMany_CalebFontenot</artifactId>
|
||||
<groupId>edu.slcc.asdv.chloe</groupId>
|
||||
<artifactId>MP1_ManyToMany_ChloeFontenot</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>20</maven.compiler.source>
|
||||
<maven.compiler.target>20</maven.compiler.target>
|
||||
<exec.mainClass>edu.slcc.asdv.caleb.mp1_manytomany_calebfontenot.MP1_ManyToMany_CalebFontenot</exec.mainClass>
|
||||
<exec.mainClass>edu.slcc.asdv.chloe.mp1_manytomany_chloefontenot.MP1_ManyToMany_ChloeFontenot</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.mp1_manytomany_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.mp1_manytomany_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.mp1_manytomany_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.mp1_manytomany_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
@@ -23,13 +23,13 @@ table {color: #888888; background-color: #313335; font-family: monospace; font-w
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 4/Assignments/MP2_CalebFontenot/src/main/java/com/calebfontenot/mp2_calebfontenot/Matrices.java</td></tr></table>
|
||||
<table width="100%"><tr><td align="center">/home/chloe/ASDV-Java/Semester 4/Assignments/MP2_ChloeFontenot/src/main/java/com/chloefontenot/mp2_chloefontenot/Matrices.java</td></tr></table>
|
||||
<pre>
|
||||
<span class="comment">/*</span>
|
||||
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt</span><span class="comment"> to change this license</span>
|
||||
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java</span><span class="comment"> to edit this template</span>
|
||||
<span class="comment"> */</span>
|
||||
<span class="literal">package</span> com.calebfontenot.mp2_calebfontenot;
|
||||
<span class="literal">package</span> com.chloefontenot.mp2_chloefontenot;
|
||||
|
||||
<span class="literal">import</span> java.math.BigInteger;
|
||||
<span class="literal">import</span> java.util.ArrayList;
|
||||
@@ -38,7 +38,7 @@ table {color: #888888; background-color: #313335; font-family: monospace; font-w
|
||||
|
||||
<span class="comment">/**</span>
|
||||
<span class="comment"> *</span>
|
||||
<span class="comment"> * </span><span class="comment">@author</span> <span class="comment">caleb</span>
|
||||
<span class="comment"> * </span><span class="comment">@author</span> <span class="comment">chloe</span>
|
||||
<span class="comment">*/</span>
|
||||
<span class="literal">public</span> <span class="literal">class</span> Matrices {
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.calebfontenot</groupId>
|
||||
<artifactId>MP2_CalebFontenot</artifactId>
|
||||
<groupId>com.chloefontenot</groupId>
|
||||
<artifactId>MP2_ChloeFontenot</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>21</maven.compiler.source>
|
||||
<maven.compiler.target>21</maven.compiler.target>
|
||||
<exec.mainClass>com.calebfontenot.mp2_calebfontenot.MP2_CalebFontenot</exec.mainClass>
|
||||
<exec.mainClass>com.chloefontenot.mp2_chloefontenot.MP2_ChloeFontenot</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -2,13 +2,13 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
*/
|
||||
|
||||
package com.calebfontenot.mp2_calebfontenot;
|
||||
package com.chloefontenot.mp2_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class MP2_CalebFontenot {
|
||||
public class MP2_ChloeFontenot {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World!");
|
||||
@@ -2,7 +2,7 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package com.calebfontenot.mp2_calebfontenot;
|
||||
package com.chloefontenot.mp2_chloefontenot;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.ArrayList;
|
||||
@@ -11,7 +11,7 @@ import java.util.concurrent.RecursiveTask;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class Matrices {
|
||||
|
||||
@@ -24,17 +24,17 @@ table {color: #888888; background-color: #313335; font-family: monospace; font-w
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 4/Assignments/MapASDV_CalebFontenot/src/mapasdv_calebfontenot/MapASDV.java</td></tr></table>
|
||||
<table width="100%"><tr><td align="center">/home/chloe/ASDV-Java/Semester 4/Assignments/MapASDV_ChloeFontenot/src/mapasdv_chloefontenot/MapASDV.java</td></tr></table>
|
||||
<pre>
|
||||
<span class="comment">/*</span>
|
||||
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt</span><span class="comment"> to change this license</span>
|
||||
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java</span><span class="comment"> to edit this template</span>
|
||||
<span class="comment"> */</span>
|
||||
<span class="literal">package</span> mapasdv_calebfontenot;
|
||||
<span class="literal">package</span> mapasdv_chloefontenot;
|
||||
|
||||
<span class="comment">/**</span>
|
||||
<span class="comment"> *</span>
|
||||
<span class="comment"> * </span><span class="comment">@author</span> <span class="comment">caleb</span>
|
||||
<span class="comment"> * </span><span class="comment">@author</span> <span class="comment">chloe</span>
|
||||
<span class="comment">*/</span>
|
||||
<span class="comment">//import ListASDV;</span>
|
||||
<span class="literal">import</span> java.util.ArrayList;
|
||||
@@ -7,8 +7,8 @@
|
||||
<!-- the Compile on Save feature is turned off for the project. -->
|
||||
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
|
||||
<!-- in the project's Project Properties dialog box.-->
|
||||
<project name="MapASDV_CalebFontenot" default="default" basedir=".">
|
||||
<description>Builds, tests, and runs the project MapASDV_CalebFontenot.</description>
|
||||
<project name="MapASDV_ChloeFontenot" default="default" basedir=".">
|
||||
<description>Builds, tests, and runs the project MapASDV_ChloeFontenot.</description>
|
||||
<import file="nbproject/build-impl.xml"/>
|
||||
<!--
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
|
||||
An example of overriding the target for project execution could look like this:
|
||||
|
||||
<target name="run" depends="MapASDV_CalebFontenot-impl.jar">
|
||||
<target name="run" depends="MapASDV_ChloeFontenot-impl.jar">
|
||||
<exec dir="bin" executable="launcher.exe">
|
||||
<arg file="${dist.jar}"/>
|
||||
</exec>
|
||||
@@ -19,7 +19,7 @@ is divided into following sections:
|
||||
- cleanup
|
||||
|
||||
-->
|
||||
<project xmlns:if="ant:if" xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" xmlns:unless="ant:unless" basedir=".." default="default" name="MapASDV_CalebFontenot-impl">
|
||||
<project xmlns:if="ant:if" xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" xmlns:unless="ant:unless" basedir=".." default="default" name="MapASDV_ChloeFontenot-impl">
|
||||
<fail message="Please build using Ant 1.8.0 or higher.">
|
||||
<condition>
|
||||
<not>
|
||||
@@ -619,7 +619,7 @@ is divided into following sections:
|
||||
</fileset>
|
||||
</union>
|
||||
<taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
|
||||
<testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="MapASDV_CalebFontenot" testname="TestNG tests" workingDir="${work.dir}">
|
||||
<testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="MapASDV_ChloeFontenot" testname="TestNG tests" workingDir="${work.dir}">
|
||||
<xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
|
||||
<propertyset>
|
||||
<propertyref prefix="test-sys-prop."/>
|
||||
@@ -716,7 +716,7 @@ is divided into following sections:
|
||||
<condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
|
||||
<isset property="test.method"/>
|
||||
</condition>
|
||||
<condition else="-suitename MapASDV_CalebFontenot -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
|
||||
<condition else="-suitename MapASDV_ChloeFontenot -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
|
||||
<matches pattern=".*\.xml" string="@{testClass}"/>
|
||||
</condition>
|
||||
<delete dir="${build.test.results.dir}" quiet="true"/>
|
||||
@@ -1057,7 +1057,7 @@ is divided into following sections:
|
||||
<delete file="${built-jar.properties}" quiet="true"/>
|
||||
</target>
|
||||
<target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
|
||||
<echo level="warn" message="Cycle detected: MapASDV_CalebFontenot was already built"/>
|
||||
<echo level="warn" message="Cycle detected: MapASDV_ChloeFontenot was already built"/>
|
||||
</target>
|
||||
<target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
|
||||
<mkdir dir="${build.dir}"/>
|
||||
@@ -1728,7 +1728,7 @@ is divided into following sections:
|
||||
<delete file="${built-clean.properties}" quiet="true"/>
|
||||
</target>
|
||||
<target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
|
||||
<echo level="warn" message="Cycle detected: MapASDV_CalebFontenot was already built"/>
|
||||
<echo level="warn" message="Cycle detected: MapASDV_ChloeFontenot was already built"/>
|
||||
</target>
|
||||
<target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
|
||||
<mkdir dir="${build.dir}"/>
|
||||
@@ -3,8 +3,8 @@ annotation.processing.enabled.in.editor=false
|
||||
annotation.processing.processors.list=
|
||||
annotation.processing.run.all.processors=true
|
||||
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
|
||||
application.title=MapASDV_CalebFontenot
|
||||
application.vendor=caleb
|
||||
application.title=MapASDV_ChloeFontenot
|
||||
application.vendor=chloe
|
||||
build.classes.dir=${build.dir}/classes
|
||||
build.classes.excludes=**/*.java,**/*.form
|
||||
# This directory is removed when the project is cleaned:
|
||||
@@ -29,10 +29,10 @@ debug.test.modulepath=\
|
||||
dist.archive.excludes=
|
||||
# This directory is removed when the project is cleaned:
|
||||
dist.dir=dist
|
||||
dist.jar=${dist.dir}/MapASDV_CalebFontenot.jar
|
||||
dist.jar=${dist.dir}/MapASDV_ChloeFontenot.jar
|
||||
dist.javadoc.dir=${dist.dir}/javadoc
|
||||
dist.jlink.dir=${dist.dir}/jlink
|
||||
dist.jlink.output=${dist.jlink.dir}/MapASDV_CalebFontenot
|
||||
dist.jlink.output=${dist.jlink.dir}/MapASDV_ChloeFontenot
|
||||
endorsed.classpath=
|
||||
excludes=
|
||||
includes=**
|
||||
@@ -72,8 +72,8 @@ jlink.additionalmodules=
|
||||
# The jlink additional command line parameters
|
||||
jlink.additionalparam=
|
||||
jlink.launcher=true
|
||||
jlink.launcher.name=MapASDV_CalebFontenot
|
||||
main.class=mapasdv_calebfontenot.MapASDV
|
||||
jlink.launcher.name=MapASDV_ChloeFontenot
|
||||
main.class=mapasdv_chloefontenot.MapASDV
|
||||
manifest.file=manifest.mf
|
||||
meta.inf.dir=${src.dir}/META-INF
|
||||
mkdist.disabled=false
|
||||
@@ -3,7 +3,7 @@
|
||||
<type>org.netbeans.modules.java.j2seproject</type>
|
||||
<configuration>
|
||||
<data xmlns="http://www.netbeans.org/ns/j2se-project/3">
|
||||
<name>MapASDV_CalebFontenot</name>
|
||||
<name>MapASDV_ChloeFontenot</name>
|
||||
<source-roots>
|
||||
<root id="src.dir"/>
|
||||
</source-roots>
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
package mapasdv_calebfontenot;
|
||||
package mapasdv_chloefontenot;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package mapasdv_calebfontenot;
|
||||
package mapasdv_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
//import ListASDV;
|
||||
import java.util.ArrayList;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
||||
<artifactId>Multithreading_CalebFontenot</artifactId>
|
||||
<groupId>edu.slcc.asdv.chloe</groupId>
|
||||
<artifactId>Multithreading_ChloeFontenot</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<dependencies>
|
||||
@@ -34,6 +34,6 @@
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<exec.mainClass>edu.slcc.asdv.caleb.multithreading_calebfontenot.Multithreading_CalebFontenot</exec.mainClass>
|
||||
<exec.mainClass>edu.slcc.asdv.chloe.multithreading_chloefontenot.Multithreading_ChloeFontenot</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.multithreading_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.multithreading_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
import javafx.application.Application;
|
||||
import javafx.application.Platform;
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.multithreading_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.multithreading_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class PrintChar implements Runnable{
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.multithreading_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.multithreading_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class RunFlash {
|
||||
public static void main(String[] args) {
|
||||
@@ -2,11 +2,11 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.multithreading_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.multithreading_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class Threads {
|
||||
public static void main(String[] args)
|
||||
@@ -2,13 +2,13 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
*/
|
||||
|
||||
package edu.slcc.asdv.caleb.multithreading_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.multithreading_chloefontenot;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class forkbomb
|
||||
{
|
||||
@@ -24,13 +24,13 @@ table {color: #888888; background-color: #313335; font-family: monospace; font-w
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%"><tr><td align="center">/home/caleb/ASDV-Java/Semester 4/Assignments/ProjectTrees_CalebFontenot/src/main/java/edu/slcc/asdv/caleb/projecttrees_calebfontenot/TreeASDV.java</td></tr></table>
|
||||
<table width="100%"><tr><td align="center">/home/chloe/ASDV-Java/Semester 4/Assignments/ProjectTrees_ChloeFontenot/src/main/java/edu/slcc/asdv/chloe/projecttrees_chloefontenot/TreeASDV.java</td></tr></table>
|
||||
<pre>
|
||||
<span class="comment">/*</span>
|
||||
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt</span><span class="comment"> to change this license</span>
|
||||
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java</span><span class="comment"> to edit this template</span>
|
||||
<span class="comment"> */</span>
|
||||
<span class="literal">package</span> edu.slcc.asdv.caleb.projecttrees_calebfontenot;
|
||||
<span class="literal">package</span> edu.slcc.asdv.chloe.projecttrees_chloefontenot;
|
||||
|
||||
<span class="literal">import</span> java.util.ArrayList;
|
||||
<span class="literal">import</span> java.util.Iterator;
|
||||
@@ -41,7 +41,7 @@ table {color: #888888; background-color: #313335; font-family: monospace; font-w
|
||||
|
||||
<span class="comment">/**</span>
|
||||
<span class="comment"> *</span>
|
||||
<span class="comment"> * </span><span class="comment">@author</span> <span class="comment">caleb</span>
|
||||
<span class="comment"> * </span><span class="comment">@author</span> <span class="comment">chloe</span>
|
||||
<span class="comment"> * </span><span class="comment">@param</span> <span class="ST1"><T></span>
|
||||
<span class="comment">*/</span>
|
||||
<span class="literal">public</span> <span class="literal">class</span> TreeASDV<T <span class="literal">extends</span> Comparable> <span class="literal">implements</span> Cloneable {
|
||||
@@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
||||
<artifactId>ProjectTrees_CalebFontenot</artifactId>
|
||||
<groupId>edu.slcc.asdv.chloe</groupId>
|
||||
<artifactId>ProjectTrees_ChloeFontenot</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>20</maven.compiler.source>
|
||||
<maven.compiler.target>20</maven.compiler.target>
|
||||
<exec.mainClass>edu.slcc.asdv.caleb.projecttrees_calebfontenot.ProjectTrees_CalebFontenot</exec.mainClass>
|
||||
<exec.mainClass>edu.slcc.asdv.chloe.projecttrees_chloefontenot.ProjectTrees_ChloeFontenot</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -2,13 +2,13 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
*/
|
||||
|
||||
package edu.slcc.asdv.caleb.projecttrees_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.projecttrees_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class ProjectTrees_CalebFontenot {
|
||||
public class ProjectTrees_ChloeFontenot {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World!");
|
||||
@@ -2,7 +2,7 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package edu.slcc.asdv.caleb.projecttrees_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.projecttrees_chloefontenot;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
@@ -13,7 +13,7 @@ import java.util.Stack;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
* @param <T>
|
||||
*/
|
||||
public class TreeASDV<T extends Comparable> implements Cloneable {
|
||||
@@ -1,5 +0,0 @@
|
||||
/home/caleb/ASDV-Java/Semester 4/Assignments/Threads_CalebFontenot/src/main/java/sync/AccountSync2.java
|
||||
/home/caleb/ASDV-Java/Semester 4/Assignments/Threads_CalebFontenot/src/main/java/edu/slcc/asdv/caleb/threads_calebfontenot/Threads_CalebFontenot.java
|
||||
/home/caleb/ASDV-Java/Semester 4/Assignments/Threads_CalebFontenot/src/main/java/sync/AccountSyncronized.java
|
||||
/home/caleb/ASDV-Java/Semester 4/Assignments/Threads_CalebFontenot/src/main/java/sync/AccountSync3.java
|
||||
/home/caleb/ASDV-Java/Semester 4/Assignments/Threads_CalebFontenot/src/main/java/sync/AccountNoSync.java
|
||||
@@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>edu.slcc.asdv.caleb</groupId>
|
||||
<artifactId>Threads_CalebFontenot</artifactId>
|
||||
<groupId>edu.slcc.asdv.chloe</groupId>
|
||||
<artifactId>Threads_ChloeFontenot</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>20</maven.compiler.source>
|
||||
<maven.compiler.target>20</maven.compiler.target>
|
||||
<exec.mainClass>edu.slcc.asdv.caleb.threads_calebfontenot.Threads_CalebFontenot</exec.mainClass>
|
||||
<exec.mainClass>edu.slcc.asdv.chloe.threads_chloefontenot.Threads_ChloeFontenot</exec.mainClass>
|
||||
</properties>
|
||||
</project>
|
||||
@@ -2,13 +2,13 @@
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
*/
|
||||
|
||||
package edu.slcc.asdv.caleb.threads_calebfontenot;
|
||||
package edu.slcc.asdv.chloe.threads_chloefontenot;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class Threads_CalebFontenot {
|
||||
public class Threads_ChloeFontenot {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World!");
|
||||
@@ -9,7 +9,7 @@ import java.util.concurrent.Executors;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class AccountNoSync {
|
||||
|
||||
@@ -9,7 +9,7 @@ import java.util.concurrent.Executors;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class AccountSync2 {
|
||||
|
||||
@@ -11,7 +11,7 @@ import java.util.concurrent.locks.ReentrantLock;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class AccountSync3 {
|
||||
|
||||
@@ -9,7 +9,7 @@ import java.util.concurrent.Executors;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author caleb
|
||||
* @author chloe
|
||||
*/
|
||||
public class AccountSyncronized {
|
||||
|
||||
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
edu/slcc/asdv/caleb/threads_calebfontenot/Threads_CalebFontenot.class
|
||||
edu/slcc/asdv/chloe/threads_chloefontenot/Threads_ChloeFontenot.class
|
||||
sync/AccountSync3$Account.class
|
||||
sync/AccountSync2.class
|
||||
sync/AccountSync2$AddAPennyTask.class
|
||||
@@ -0,0 +1,5 @@
|
||||
/home/chloe/ASDV-Java/Semester 4/Assignments/Threads_ChloeFontenot/src/main/java/sync/AccountSync2.java
|
||||
/home/chloe/ASDV-Java/Semester 4/Assignments/Threads_ChloeFontenot/src/main/java/edu/slcc/asdv/chloe/threads_chloefontenot/Threads_ChloeFontenot.java
|
||||
/home/chloe/ASDV-Java/Semester 4/Assignments/Threads_ChloeFontenot/src/main/java/sync/AccountSyncronized.java
|
||||
/home/chloe/ASDV-Java/Semester 4/Assignments/Threads_ChloeFontenot/src/main/java/sync/AccountSync3.java
|
||||
/home/chloe/ASDV-Java/Semester 4/Assignments/Threads_ChloeFontenot/src/main/java/sync/AccountNoSync.java
|
||||
Reference in New Issue
Block a user