Compare commits
No commits in common. "1f2d4b206ef4e767fce93ac5a9b9a2cb30728bd6" and "3dc5790cb769f76d0deeeb519e74d232de07333e" have entirely different histories.
1f2d4b206e
...
3dc5790cb7
|
@ -1,2 +0,0 @@
|
||||||
/.project
|
|
||||||
/.classpath
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
public class Test {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("XYZ");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
public class Test1 {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("ABA");
|
||||||
|
}
|
||||||
|
}
|
|
@ -716,6 +716,7 @@ public class Bibliothek {
|
||||||
matches.add(j);
|
matches.add(j);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
System.out.println("Filtered: " + matches.size());
|
||||||
return matches;
|
return matches;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -732,6 +733,7 @@ public class Bibliothek {
|
||||||
matches.add(j);
|
matches.add(j);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
System.out.println("Unfiltered: " + matches.size());
|
||||||
return matches;
|
return matches;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -374,6 +374,7 @@ public class BibliothekGUI extends JFrame implements ActionListener{
|
||||||
mainSearch.revalidate();
|
mainSearch.revalidate();
|
||||||
mainSearch.add(text1, BorderLayout.CENTER);
|
mainSearch.add(text1, BorderLayout.CENTER);
|
||||||
mainSearch.revalidate();
|
mainSearch.revalidate();
|
||||||
|
System.out.println("FIL");
|
||||||
} else if (i > 0){
|
} else if (i > 0){
|
||||||
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
|
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
|
||||||
for(JLabel j: matchedMedia) {
|
for(JLabel j: matchedMedia) {
|
||||||
|
@ -395,6 +396,7 @@ public class BibliothekGUI extends JFrame implements ActionListener{
|
||||||
mainSearch.revalidate();
|
mainSearch.revalidate();
|
||||||
mainSearch.add(text1, BorderLayout.CENTER);
|
mainSearch.add(text1, BorderLayout.CENTER);
|
||||||
mainSearch.revalidate();
|
mainSearch.revalidate();
|
||||||
|
System.out.println("UNFIL");
|
||||||
} else if (i > 0){
|
} else if (i > 0){
|
||||||
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
|
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
|
||||||
for(JLabel j: matchedMedia) {
|
for(JLabel j: matchedMedia) {
|
||||||
|
|
Loading…
Reference in New Issue