Skip to content
Snippets Groups Projects
Commit 542d46c8 authored by Andrey Ruzhanskiy's avatar Andrey Ruzhanskiy
Browse files

Changed package in classes.

parent e5b9d646
No related branches found
No related tags found
1 merge request!14Feat/braille print back end 4
Showing
with 21 additions and 23 deletions
import de.tudresden.inf.mci.brailleplot.commandline.CommandLineParser; import de.tudresden.inf.mci.brailleplot.commandline.CommandLineParser;
import de.tudresden.inf.mci.brailleplot.commandline.SettingType;
import de.tudresden.inf.mci.brailleplot.commandline.SettingsReader; import de.tudresden.inf.mci.brailleplot.commandline.SettingsReader;
import de.tudresden.inf.mci.brailleplot.commandline.SettingsWriter; import de.tudresden.inf.mci.brailleplot.commandline.SettingsWriter;
import de.tudresden.inf.mci.brailleplot.configparser.Format; import de.tudresden.inf.mci.brailleplot.configparser.Format;
import de.tudresden.inf.mci.brailleplot.configparser.JavaPropertiesConfigurationParser; import de.tudresden.inf.mci.brailleplot.configparser.JavaPropertiesConfigurationParser;
import de.tudresden.inf.mci.brailleplot.configparser.Printer; import de.tudresden.inf.mci.brailleplot.configparser.Printer;
import de.tudresden.inf.mci.brailleplot.exporter.PrintDirector; import de.tudresden.inf.mci.brailleplot.printerbackend.PrintDirector;
import de.tudresden.inf.mci.brailleplot.exporter.PrinterCapability; import de.tudresden.inf.mci.brailleplot.printerbackend.PrinterCapability;
import de.tudresden.inf.mci.brailleplot.printabledata.MatrixData; import de.tudresden.inf.mci.brailleplot.printabledata.MatrixData;
import de.tudresden.inf.mci.brailleplot.printabledata.SimpleMatrixDataImpl; import de.tudresden.inf.mci.brailleplot.printabledata.SimpleMatrixDataImpl;
...@@ -19,7 +18,6 @@ import java.io.File; ...@@ -19,7 +18,6 @@ import java.io.File;
import java.lang.reflect.Field; import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.util.Optional;
/** /**
* Integrationtests for the components PrintableData and Exporter. * Integrationtests for the components PrintableData and Exporter.
......
...@@ -4,8 +4,8 @@ import de.tudresden.inf.mci.brailleplot.configparser.Format; ...@@ -4,8 +4,8 @@ import de.tudresden.inf.mci.brailleplot.configparser.Format;
import de.tudresden.inf.mci.brailleplot.configparser.JavaPropertiesConfigurationParser; import de.tudresden.inf.mci.brailleplot.configparser.JavaPropertiesConfigurationParser;
import de.tudresden.inf.mci.brailleplot.configparser.Printer; import de.tudresden.inf.mci.brailleplot.configparser.Printer;
import de.tudresden.inf.mci.brailleplot.exporter.PrintDirector; import de.tudresden.inf.mci.brailleplot.printerbackend.PrintDirector;
import de.tudresden.inf.mci.brailleplot.exporter.PrinterCapability; import de.tudresden.inf.mci.brailleplot.printerbackend.PrinterCapability;
import de.tudresden.inf.mci.brailleplot.printabledata.MatrixData; import de.tudresden.inf.mci.brailleplot.printabledata.MatrixData;
import de.tudresden.inf.mci.brailleplot.printabledata.SimpleMatrixDataImpl; import de.tudresden.inf.mci.brailleplot.printabledata.SimpleMatrixDataImpl;
......
package de.tudresden.inf.mci.brailleplot.configparser; package de.tudresden.inf.mci.brailleplot.configparser;
import de.tudresden.inf.mci.brailleplot.exporter.PrinterCapability; import de.tudresden.inf.mci.brailleplot.printerbackend.PrinterCapability;
import javax.print.PrintService; import javax.print.PrintService;
import javax.print.PrintServiceLookup; import javax.print.PrintServiceLookup;
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
/** /**
* Abstract class for extending purposes. * Abstract class for extending purposes.
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
import de.tudresden.inf.mci.brailleplot.configparser.Printer; import de.tudresden.inf.mci.brailleplot.configparser.Printer;
import de.tudresden.inf.mci.brailleplot.printabledata.MatrixData; import de.tudresden.inf.mci.brailleplot.printabledata.MatrixData;
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
/** /**
* Abstract Class for Documents, that need special Escape Sequences for the Index Everest-V4. * Abstract Class for Documents, that need special Escape Sequences for the Index Everest-V4.
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
/** /**
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
/** /**
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
/** /**
* Class representing a Json Parser entity. * Class representing a Json Parser entity.
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
import de.tudresden.inf.mci.brailleplot.printabledata.BrailleCell6; import de.tudresden.inf.mci.brailleplot.printabledata.BrailleCell6;
import de.tudresden.inf.mci.brailleplot.printabledata.MatrixData; import de.tudresden.inf.mci.brailleplot.printabledata.MatrixData;
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
/** /**
* Exception Class for not recogniced/not supported FIleExtension for brailletables. * Exception Class for not recogniced/not supported FIleExtension for brailletables.
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
import de.tudresden.inf.mci.brailleplot.configparser.Printer; import de.tudresden.inf.mci.brailleplot.configparser.Printer;
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
/** /**
* This enum provides means to differentiate between printers. * This enum provides means to differentiate between printers.
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
import java.io.FileInputStream; import java.io.FileInputStream;
import java.util.Objects; import java.util.Objects;
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
/** /**
......
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
* Brailleplot Exporter package. * Brailleplot Exporter package.
* Contains printer classes. * Contains printer classes.
*/ */
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Assertions;
......
package de.tudresden.inf.mci.brailleplot.exporter; package de.tudresden.inf.mci.brailleplot.printerbackend;
import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment