Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .metadata/.lock
Empty file.
88 changes: 88 additions & 0 deletions .metadata/.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
!SESSION 2024-01-25 13:35:18.772 -----------------------------------------------
eclipse.buildId=4.30.0.20231201-1200
java.version=17.0.9
java.vendor=Eclipse Adoptium
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
Framework arguments: -product org.eclipse.epp.package.jee.product
Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.jee.product

!ENTRY org.eclipse.emf.ecore 2 0 2024-01-25 13:35:50.146
!MESSAGE Both 'org.eclipse.jst.j2ee.core' and 'org.eclipse.jst.j2ee.core' register a package for 'application.xmi'

!ENTRY ch.qos.logback.classic 1 0 2024-01-25 13:35:50.446
!MESSAGE Activated before the state location was initialized. Retry after the state location is initialized.

!ENTRY ch.qos.logback.classic 1 0 2024-01-25 14:27:28.791
!MESSAGE Logback config file: C:\Users\nicci\ZooDMACCJava2Spring2024\.metadata\.plugins\org.eclipse.m2e.logback\logback.2.2.1.20231030-1438.xml

!ENTRY org.eclipse.jface 2 0 2024-01-25 14:27:31.014
!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation.
!SUBENTRY 1 org.eclipse.jface 2 0 2024-01-25 14:27:31.014
!MESSAGE A conflict occurred for CTRL+SHIFT+T:
Binding(CTRL+SHIFT+T,
ParameterizedCommand(Command(org.eclipse.jdt.ui.navigate.open.type,Open Type,
Open a type in a Java editor,
Category(org.eclipse.ui.category.navigate,Navigate,null,true),
WorkbenchHandlerServiceHandler("org.eclipse.jdt.ui.navigate.open.type"),
,,true),null),
org.eclipse.ui.defaultAcceleratorConfiguration,
org.eclipse.ui.contexts.window,,,system)
Binding(CTRL+SHIFT+T,
ParameterizedCommand(Command(org.eclipse.lsp4e.symbolinworkspace,Go to Symbol in Workspace,
,
Category(org.eclipse.lsp4e.category,Language Servers,null,true),
WorkbenchHandlerServiceHandler("org.eclipse.lsp4e.symbolinworkspace"),
,,true),null),
org.eclipse.ui.defaultAcceleratorConfiguration,
org.eclipse.ui.contexts.window,,,system)

!ENTRY org.eclipse.egit.ui 2 0 2024-01-25 14:27:34.027
!MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
user global configuration and to define the default location to store repositories: 'C:\Users\nicci'. If this is
not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
EGit might behave differently since they see different configuration options.
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.
!SESSION 2024-01-25 14:27:58.752 -----------------------------------------------
eclipse.buildId=4.30.0.20231201-1200
java.version=17.0.9
java.vendor=Eclipse Adoptium
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
Framework arguments: -product org.eclipse.epp.package.jee.product
Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.jee.product

!ENTRY org.eclipse.emf.ecore 2 0 2024-01-25 14:28:01.491
!MESSAGE Both 'org.eclipse.jst.j2ee.core' and 'org.eclipse.jst.j2ee.core' register a package for 'application.xmi'

!ENTRY ch.qos.logback.classic 1 0 2024-01-25 14:28:01.730
!MESSAGE Activated before the state location was initialized. Retry after the state location is initialized.

!ENTRY ch.qos.logback.classic 1 0 2024-01-25 14:28:05.247
!MESSAGE Logback config file: C:\Users\nicci\ZooDMACCJava2Spring2024\.metadata\.plugins\org.eclipse.m2e.logback\logback.2.2.1.20231030-1438.xml

!ENTRY org.eclipse.jface 2 0 2024-01-25 14:28:06.701
!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation.
!SUBENTRY 1 org.eclipse.jface 2 0 2024-01-25 14:28:06.702
!MESSAGE A conflict occurred for CTRL+SHIFT+T:
Binding(CTRL+SHIFT+T,
ParameterizedCommand(Command(org.eclipse.jdt.ui.navigate.open.type,Open Type,
Open a type in a Java editor,
Category(org.eclipse.ui.category.navigate,Navigate,null,true),
WorkbenchHandlerServiceHandler("org.eclipse.jdt.ui.navigate.open.type"),
,,true),null),
org.eclipse.ui.defaultAcceleratorConfiguration,
org.eclipse.ui.contexts.window,,,system)
Binding(CTRL+SHIFT+T,
ParameterizedCommand(Command(org.eclipse.lsp4e.symbolinworkspace,Go to Symbol in Workspace,
,
Category(org.eclipse.lsp4e.category,Language Servers,null,true),
WorkbenchHandlerServiceHandler("org.eclipse.lsp4e.symbolinworkspace"),
,,true),null),
org.eclipse.ui.defaultAcceleratorConfiguration,
org.eclipse.ui.contexts.window,,,system)

!ENTRY org.eclipse.egit.ui 2 0 2024-01-25 14:28:08.968
!MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
user global configuration and to define the default location to store repositories: 'C:\Users\nicci'. If this is
not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
EGit might behave differently since they see different configuration options.
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.
Binary file added .metadata/.mylyn/repositories.xml.zip
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package main;

import model.Example;

public class Runner {

public static void main(String[] args) {
Runner run = new Runner();
run.go();
}

private void go() {
Example example = new Example();
example.makeNoise();

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package main;

import model.Bird;

public class Runner {

public static void main(String[] args) {
Runner run = new Runner();
run.go();
}

private void go() {
Bird birdObj = new Bird();
birdObj.makeNoise();

}


}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package main;

public class Bird {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
package model;

public class Bird {
private String habitat;
private String name;
private int length;
/**
*
*/
public Bird() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param habitat
* @param name
* @param length
*/
public Bird(String habitat, String name, int length) {
super();
this.habitat = habitat;
this.name = name;
this.length = length;
}
/**
* @return the habitat
*/
public String getHabitat() {
return habitat;
}
/**
* @param habitat the habitat to set
*/
public void setHabitat(String habitat) {
this.habitat = habitat;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the length
*/
public int getLength() {
return length;
}
/**
* @param length the length to set
*/
public void setLength(int length) {
this.length = length;
}
@Override
public String toString() {
return "Bird [habitat=" + habitat + ", name=" + name + ", length=" + length + "]";
}

public String makeNoise() {
return "Tweet Tweet Tweet";
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
package model;

public class Bird {
private String habitat;
private String name;
private int length;
/**
*
*/
public Bird() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param habitat
* @param name
* @param length
*/
public Bird(String habitat, String name, int length) {
super();
this.habitat = habitat;
this.name = name;
this.length = length;
}
/**
* @return the habitat
*/
public String getHabitat() {
return habitat;
}
/**
* @param habitat the habitat to set
*/
public void setHabitat(String habitat) {
this.habitat = habitat;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the length
*/
public int getLength() {
return length;
}
/**
* @param length the length to set
*/
public void setLength(int length) {
this.length = length;
}
@Override
public String toString() {
return "Bird [habitat=" + habitat + ", name=" + name + ", length=" + length + "]";
}

public String makeNoise() {
return "Tweet Tweet Tweet";
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package main;

import model.Bird;

public class Runner {

public static void main(String[] args) {
Bird birdObj = new Bird("woodlands","Robin", 5);
birdObj.makeNoise();

System.out.println(birdObj.toString());
System.out.println(birdObj.makeNoise());

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package main;

import model.Bird;

public class Runner {

public static void main(String[] args) {
Runner run = new Runner();
run.go();
}

private void go() {
Bird birdObj = new Bird();
birdObj.makeNoise();

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package main;

import model.Bird;

public class Runner {

public static void main(String[] args) {
Bird birdObj = new Bird("woodlands","Robin", 5);
birdObj.makeNoise();

System.out.println(birdObj.makeNoise());

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package main;

import model.Bird;

public class Runner {

public static void main(String[] args) {
Bird birdObj = new Bird("woodlands","Robin", 9);
birdObj.makeNoise();

System.out.println(birdObj.toString());
System.out.println(birdObj.makeNoise());

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

public class Rhino {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package main;

import model.Example;

public class Runner {

public static void main(String[] args) {
Runner run = new Runner();
run.go();
}

private void go() {
Bird birdObj = new Bird();
birdObj.makeNoise();

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package main;

import model.Bird;

public class Runner {

public static void main(String[] args) {
Bird birdObj = new Bird("woodlands","Robin", 5);
birdObj.makeNoise();

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package model;

public class Bird {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* @author Nicole Puente -npuente
* CIS175 - Spring 2024
*
*/
package model;
public class Rhino {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/main/
/model/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading