Initial commit
This commit is contained in:
29
.gitignore
vendored
Normal file
29
.gitignore
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
### IntelliJ IDEA ###
|
||||
out/
|
||||
!**/src/main/**/out/
|
||||
!**/src/test/**/out/
|
||||
|
||||
### Eclipse ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
bin/
|
||||
!**/src/main/**/bin/
|
||||
!**/src/test/**/bin/
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
### Mac OS ###
|
||||
.DS_Store
|
||||
8
.idea/.gitignore
generated
vendored
Normal file
8
.idea/.gitignore
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
14
.idea/deployment.xml
generated
Normal file
14
.idea/deployment.xml
generated
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="PublishConfigData" remoteFilesAllowedToDisappearOnAutoupload="false">
|
||||
<serverData>
|
||||
<paths name="csasq.ru">
|
||||
<serverdata>
|
||||
<mappings>
|
||||
<mapping local="$PROJECT_DIR$" web="/" />
|
||||
</mappings>
|
||||
</serverdata>
|
||||
</paths>
|
||||
</serverData>
|
||||
</component>
|
||||
</project>
|
||||
6
.idea/misc.xml
generated
Normal file
6
.idea/misc.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="corretto-1.8" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
||||
8
.idea/modules.xml
generated
Normal file
8
.idea/modules.xml
generated
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/compile_only.iml" filepath="$PROJECT_DIR$/compile_only.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
11
compile_only.iml
Normal file
11
compile_only.iml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
15
src/Main.java
Normal file
15
src/Main.java
Normal file
@ -0,0 +1,15 @@
|
||||
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or
|
||||
// click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
//TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text
|
||||
// to see how IntelliJ IDEA suggests fixing it.
|
||||
System.out.printf("Hello and welcome!");
|
||||
|
||||
for (int i = 1; i <= 5; i++) {
|
||||
//TIP Press <shortcut actionId="Debug"/> to start debugging your code. We have set one <icon src="AllIcons.Debugger.Db_set_breakpoint"/> breakpoint
|
||||
// for you, but you can always add more by pressing <shortcut actionId="ToggleLineBreakpoint"/>.
|
||||
System.out.println("i = " + i);
|
||||
}
|
||||
}
|
||||
}
|
||||
71
src/com/atcsibir/infobox/utils/Constants.java
Normal file
71
src/com/atcsibir/infobox/utils/Constants.java
Normal file
@ -0,0 +1,71 @@
|
||||
package com.atcsibir.infobox.utils;/* */
|
||||
/* */
|
||||
/* */
|
||||
|
||||
import java.awt.*;
|
||||
import java.io.InputStream;
|
||||
import java.text.DateFormat;
|
||||
import java.text.SimpleDateFormat;
|
||||
|
||||
/* */
|
||||
/* */ public final class Constants {
|
||||
/* */ public static final String LOGO_IMAGE = "LogoImage";
|
||||
/* */
|
||||
/* */ public static final String CHECK_LOGO_NAME = "checkLogoImage";
|
||||
/* */
|
||||
/* */ public static final String BACKGROUND_IMAGE = "BACKGROUND_IMAGE";
|
||||
/* */
|
||||
/* */ public static final String PRINTER_VKP80 = "VKP80";
|
||||
/* */
|
||||
/* 18 */ public static int TIME_OUT_CHECK = 1000;
|
||||
/* */
|
||||
/* 19 */ public static int CHECK_LEFT_INDENT = 20;
|
||||
/* */
|
||||
/* 20 */ public static int TALON_HEIGHT_PLUS = 0;
|
||||
/* */
|
||||
/* 21 */ public static String TERMINAL_TYPE = "";
|
||||
/* */
|
||||
/* 22 */ public static final Color MFC_BRAND_BOOK_2014_RED = new Color(144, 238, 144);
|
||||
/* */
|
||||
/* 23 */ public static final Color MFC_BRAND_BOOK_2014_BROWN_LIGHT = new Color(107, 142, 35);
|
||||
/* */
|
||||
/* 24 */ public static final Color MFC_BRAND_BOOK_2014_BROWN_DARK = MFC_BRAND_BOOK_2014_BROWN_LIGHT;
|
||||
/* */
|
||||
/* 25 */ public static final Color MFC_BRAND_BOOK_2017_NIGHT_BLUE = new Color(19054);
|
||||
/* */
|
||||
/* 26 */ public static final DateFormat DATE_FORMAT_DD_MM_YYYY__HH_MM_SS = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss");
|
||||
/* */
|
||||
/* 27 */ public static final SimpleDateFormat dateTimeFormat = new SimpleDateFormat("dd.MM.yyyy HH:mm");
|
||||
/* */
|
||||
/* 28 */ public static final SimpleDateFormat dateFormat = new SimpleDateFormat("dd.MM.yyyy");
|
||||
/* */
|
||||
/* 29 */ public static final SimpleDateFormat timeFormat = new SimpleDateFormat("HH:mm");
|
||||
/* */
|
||||
/* */ public static final int COUNT_ITEMS_OF_DUAL_MENU = 12;
|
||||
/* */
|
||||
/* */ public static final int COUNT_ITEMS_OF_SINGLE_MENU = 6;
|
||||
/* */
|
||||
/* 32 */ public static final InputStream BRAND_BOOK_MFC_2017_FONT = Constants.class.getResourceAsStream("/ProximaRegular.otf");
|
||||
/* */
|
||||
/* 33 */ public static final InputStream BRAND_BOOK_MFC_2014_FONT = Constants.class.getResourceAsStream("/arial.ttf");
|
||||
/* */
|
||||
/* */ public static final String ADDITIONAL_INFO = "Дополнительная информация";
|
||||
/* */
|
||||
/* */ public static final String RULES_TITLE = "Правила предварительной записи ГАУ МФЦ";
|
||||
/* */
|
||||
/* */ public static final String ANTIFROD_ALERT_TEXT_PART_ONE = "Обращаем ваше внимание, что при несовпадении личных данных в талоне";
|
||||
/* */
|
||||
/* */ public static final String ANTIFROD_ALERT_TEXT_PART_TWO = "и информации о заявителе оператор может отказать в обслуживании!";
|
||||
/* */
|
||||
/* */ public static final String CONFIRM_PAGE_TITLE = "";
|
||||
/* */
|
||||
/* */ public static final String CHECKBOX_YES = "Да";
|
||||
/* */
|
||||
/* */ public static final String CHECKBOX_NO = "Нет";
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: C:\Users\Admin\Downloads\InfoBoxTerminal-1.1.36-jar-with-dependencies.jar!\com\atcsibir\infobo\\utils\Constants.class
|
||||
* Java compiler version: 7 (51.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
Reference in New Issue
Block a user