mirror of
https://github.com/anas-elgarhy/JColorfulConsole.git
synced 2024-08-14 23:57:19 +00:00
init
This commit is contained in:
commit
610f72bcc7
8 changed files with 121 additions and 0 deletions
8
.idea/.gitignore
vendored
Normal file
8
.idea/.gitignore
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
|
13
.idea/compiler.xml
Normal file
13
.idea/compiler.xml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="CompilerConfiguration">
|
||||||
|
<annotationProcessing>
|
||||||
|
<profile name="Maven default annotation processors profile" enabled="true">
|
||||||
|
<sourceOutputDir name="target/generated-sources/annotations" />
|
||||||
|
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
||||||
|
<outputRelativeToContentRoot value="true" />
|
||||||
|
<module name="JColorfulConsole" />
|
||||||
|
</profile>
|
||||||
|
</annotationProcessing>
|
||||||
|
</component>
|
||||||
|
</project>
|
7
.idea/discord.xml
Normal file
7
.idea/discord.xml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="DiscordProjectSettings">
|
||||||
|
<option name="show" value="ASK" />
|
||||||
|
<option name="description" value="" />
|
||||||
|
</component>
|
||||||
|
</project>
|
20
.idea/jarRepositories.xml
Normal file
20
.idea/jarRepositories.xml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="RemoteRepositoriesConfiguration">
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Central Repository" />
|
||||||
|
<option name="url" value="https://repo.maven.apache.org/maven2" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Maven Central repository" />
|
||||||
|
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="jboss.community" />
|
||||||
|
<option name="name" value="JBoss Community repository" />
|
||||||
|
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||||
|
</remote-repository>
|
||||||
|
</component>
|
||||||
|
</project>
|
14
.idea/misc.xml
Normal file
14
.idea/misc.xml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||||
|
<component name="MavenProjectsManager">
|
||||||
|
<option name="originalFiles">
|
||||||
|
<list>
|
||||||
|
<option value="$PROJECT_DIR$/pom.xml" />
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_X" default="true" project-jdk-name="18" project-jdk-type="JavaSDK">
|
||||||
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
|
</component>
|
||||||
|
</project>
|
16
pom.xml
Normal file
16
pom.xml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<groupId>com.anas.jcolorfulconsole</groupId>
|
||||||
|
<artifactId>JColorfulConsole</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<maven.compiler.source>18</maven.compiler.source>
|
||||||
|
<maven.compiler.target>18</maven.compiler.target>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
</project>
|
4
src/main/java/com/anas/jcolorfulconsole/ASCIIColor.java
Normal file
4
src/main/java/com/anas/jcolorfulconsole/ASCIIColor.java
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
package com.anas.jcolorfulconsole;
|
||||||
|
|
||||||
|
public class ASCIIColor {
|
||||||
|
}
|
39
src/main/java/com/anas/jcolorfulconsole/ConsoleManger.java
Normal file
39
src/main/java/com/anas/jcolorfulconsole/ConsoleManger.java
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
package com.anas.jcolorfulconsole;
|
||||||
|
|
||||||
|
public interface ConsoleManger {
|
||||||
|
void setColor(ASCIIColor color);
|
||||||
|
void setBackgroundColor(ASCIIColor color);
|
||||||
|
|
||||||
|
void print(String text);
|
||||||
|
void print(String text, ASCIIColor color);
|
||||||
|
void println(String text);
|
||||||
|
void println(String text, ASCIIColor color);
|
||||||
|
void println();
|
||||||
|
|
||||||
|
void print(char c);
|
||||||
|
void print(char c, ASCIIColor color);
|
||||||
|
void println(char c);
|
||||||
|
void println(char c, ASCIIColor color);
|
||||||
|
|
||||||
|
void print(int i);
|
||||||
|
void print(int i, ASCIIColor color);
|
||||||
|
void println(int i);
|
||||||
|
void println(int i, ASCIIColor color);
|
||||||
|
|
||||||
|
void print(double d);
|
||||||
|
void print(double d, ASCIIColor color);
|
||||||
|
void println(double d);
|
||||||
|
void println(double d, ASCIIColor color);
|
||||||
|
|
||||||
|
void print(boolean b);
|
||||||
|
void print(boolean b, ASCIIColor color);
|
||||||
|
void println(boolean b);
|
||||||
|
void println(boolean b, ASCIIColor color);
|
||||||
|
|
||||||
|
void print(Object o);
|
||||||
|
void print(Object o, ASCIIColor color);
|
||||||
|
void println(Object o);
|
||||||
|
void println(Object o, ASCIIColor color);
|
||||||
|
|
||||||
|
void printf(String format, Object... args);
|
||||||
|
}
|
Loading…
Reference in a new issue