Skip to content
This repository has been archived by the owner on Jun 22, 2019. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudiu Bicsabi committed Mar 28, 2018
0 parents commit 53c8221
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Created by https://www.gitignore.io/api/intellij+all

### Intellij+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff:
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries

# Sensitive or high-churn files:
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml

# Gradle:
.idea/**/gradle.xml
.idea/**/libraries

# CMake
cmake-build-debug/

# Mongo Explorer plugin:
.idea/**/mongoSettings.xml

## File-based project format:
*.iws

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Ruby plugin and RubyMine
/.rakeTasks

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

### Intellij+all Patch ###
# Ignores the whole idea folder
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360

.idea/
*.iml
7 changes: 7 additions & 0 deletions src/JavaBasicsLab/main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package JavaBasicsLab;

public class main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
3 changes: 3 additions & 0 deletions src/JavaSixCert/Apple.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import cap1.ex1.food.Fruit;

class Apple extends Fruit{ /* any code you want */}
3 changes: 3 additions & 0 deletions src/JavaSixCert/cap1/ex1/food/Fruit.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package cap1.ex1.food;

public abstract class Fruit{ /* any code you want */}
5 changes: 5 additions & 0 deletions src/JavaSixCert/certification/Parent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package certification;

public class Parent {
protected int x = 9; // protected access
}

0 comments on commit 53c8221

Please sign in to comment.