Skip to content

Commit 511dfdf

Browse files
committed
visibility changes
1 parent 4579c33 commit 511dfdf

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

ExceptionFramework/src/main/java/edu/upvictoria/poo/Analyzer.java

+8
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,14 @@ public static ArrayList<String> getMultipleRowFunctions() {
217217
return multipleRowFunctions;
218218
}
219219

220+
public Database getDatabase() {
221+
return database;
222+
}
223+
224+
public void setDatabase(Database database) {
225+
this.database = database;
226+
}
227+
220228
public static ArrayList<String> getFunctions(){
221229
ArrayList<String> functions = new ArrayList<>(Analyzer.getNumericFunctions());
222230
functions.addAll(Analyzer.getMultipleRowFunctions());

META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Manifest-Version: 1.0
1+
Manifest-Version: 1.1
22
Main-Class: edu.upvictoria.poo.App
33

PRUEBITA_DB/PRUEBA.csv

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
prueba VARCHAR
Binary file not shown.

0 commit comments

Comments
 (0)