File tree Expand file tree Collapse file tree
src/main/java/com/CDPrintable Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /*
2+ * CDPrintable: A program that prints labels with track listings for your CD cases.
3+ * Copyright (C) 2025 Alexander McLean
4+ *
5+ * This source code is licensed under the GNU General Public License v3.0
6+ * found in the LICENSE file in the root directory of this source tree.
7+ *
8+ * This is the main build file.
9+ */
10+
111plugins {
212 id(" java" )
313 id(" application" )
Original file line number Diff line number Diff line change 1+ /*
2+ * CDPrintable: A program that prints labels with track listings for your CD cases.
3+ * Copyright (C) 2025 Alexander McLean
4+ *
5+ * This source code is licensed under the GNU General Public License v3.0
6+ * found in the LICENSE file in the root directory of this source tree.
7+ *
8+ * This is a settings file for the Gradle build system.
9+ */
10+
111rootProject.name = " CDPrintable"
212
Original file line number Diff line number Diff line change 1+ /*
2+ * CDPrintable: A program that prints labels with track listings for your CD cases.
3+ * Copyright (C) 2025 Alexander McLean
4+ *
5+ * This source code is licensed under the GNU General Public License v3.0
6+ * found in the LICENSE file in the root directory of this source tree.
7+ *
8+ * This class defines program constants.
9+ */
10+
111package com .CDPrintable ;
212
313public class Constants {
Original file line number Diff line number Diff line change 1+ /*
2+ * CDPrintable: A program that prints labels with track listings for your CD cases.
3+ * Copyright (C) 2025 Alexander McLean
4+ *
5+ * This source code is licensed under the GNU General Public License v3.0
6+ * found in the LICENSE file in the root directory of this source tree.
7+ *
8+ * This class contains the main method to run the program.
9+ */
10+
111package com .CDPrintable ;
212
313public class Main {
Original file line number Diff line number Diff line change 1+ /*
2+ * CDPrintable: A program that prints labels with track listings for your CD cases.
3+ * Copyright (C) 2025 Alexander McLean
4+ *
5+ * This source code is licensed under the GNU General Public License v3.0
6+ * found in the LICENSE file in the root directory of this source tree.
7+ *
8+ * This class helps you build a URL request to the MusicBrainz API.
9+ */
10+
111package com .CDPrintable ;
212
313/**
Original file line number Diff line number Diff line change 1+ /*
2+ * CDPrintable: A program that prints labels with track listings for your CD cases.
3+ * Copyright (C) 2025 Alexander McLean
4+ *
5+ * This source code is licensed under the GNU General Public License v3.0
6+ * found in the LICENSE file in the root directory of this source tree.
7+ *
8+ * This class creates the main window for the program.
9+ */
10+
111package com .CDPrintable ;
212
313import javax .swing .*;
Original file line number Diff line number Diff line change 1+ /*
2+ * CDPrintable: A program that prints labels with track listings for your CD cases.
3+ * Copyright (C) 2025 Alexander McLean
4+ *
5+ * This source code is licensed under the GNU General Public License v3.0
6+ * found in the LICENSE file in the root directory of this source tree.
7+ *
8+ * This class store User Agent information.
9+ */
10+
111package com .CDPrintable ;
212
313import javax .swing .JLabel ;
Original file line number Diff line number Diff line change 1+ /*
2+ * CDPrintable: A program that prints labels with track listings for your CD cases.
3+ * Copyright (C) 2025 Alexander McLean
4+ *
5+ * This source code is licensed under the GNU General Public License v3.0
6+ * found in the LICENSE file in the root directory of this source tree.
7+ *
8+ * This class sends web requests and returns the result.
9+ */
10+
111package com .CDPrintable ;
212
313import java .io .BufferedReader ;
You can’t perform that action at this time.
0 commit comments