diff --git a/.classpath b/.classpath index 178b91b..c3074c9 100644 --- a/.classpath +++ b/.classpath @@ -8,14 +8,28 @@ - - + + + + + + + + + + + + + + + + diff --git a/.project b/.project index 1864273..ce33202 100644 --- a/.project +++ b/.project @@ -34,4 +34,15 @@ org.eclipse.jdt.core.javanature org.eclipse.wst.jsdt.core.jsNature + + + 1758508183638 + + 30 + + org.eclipse.core.resources.regexFilterMatcher + node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ + + + diff --git a/.settings/org.eclipse.jdt.apt.core.prefs b/.settings/org.eclipse.jdt.apt.core.prefs new file mode 100644 index 0000000..d4313d4 --- /dev/null +++ b/.settings/org.eclipse.jdt.apt.core.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.apt.aptEnabled=false diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs index ddd0785..379b3d3 100644 --- a/.settings/org.eclipse.jdt.core.prefs +++ b/.settings/org.eclipse.jdt.core.prefs @@ -7,5 +7,6 @@ org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore +org.eclipse.jdt.core.compiler.processAnnotations=disabled org.eclipse.jdt.core.compiler.release=disabled org.eclipse.jdt.core.compiler.source=1.8 diff --git a/Student.java b/Student.java new file mode 100644 index 0000000..0515c74 --- /dev/null +++ b/Student.java @@ -0,0 +1,16 @@ +public class Student { + + private String name; + private int id; + + public Student(){} + public Student(String name,int id){ + this.name=name; + this.id=id; + } + public String getname(){ return name; } + public void setname(String name){ this.name=name; } + + public int getid(){ return id; } + public void setid(int id){ this.id=id; } +} diff --git a/calculator.java b/calculator.java new file mode 100644 index 0000000..3eac6b4 --- /dev/null +++ b/calculator.java @@ -0,0 +1,7 @@ +public class calculator{ + public static void main(String[] args) { + System.out.println("Eta jog : a+b"); + System.out.println("Eta biyog : a-b"); + } + //comment +}