Assign1.pdf
please help me to done this assignment well
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Assign1.pdf
please help me to done this assignment well
it is have 3 classes....
1st class Project, 2nd class Employee and 3rd class DateRec....
im only just little bit done for class project only....
import java.util.ArrayList;
import java.util.List;
public class Project
{
public static void main (String args[])
{
private String ProjectName;
private DateRec StartDate;
private DateRec EndDate;
private ArrayList<Employee>EmployeeList = new ArrayList<Employee>(3);
public Project(String ProjectName, DateRec StartDate, DateRec EndDate)
{
this.ProjectName = ProjectName;
this.StartDate = StartDate;
this.EndDate = EndDate;
}
ArrayList<Employee>EmployeeList = new ArrayList<Employee>();
EmployeeList.add("Employee 1 name : Azmil ");
EmployeeList.add("Employee 2 name : Haris");
EmployeeList.add("Employee 3 name : Ali");
employee.add(EmployeeList);
Snapshot.JPG
please help me to become this as image as i posted..
Please edit your post and wrap your code with code tags:
[code=java]
YOUR CODE HERE
[/code]
to get highlighting and preserve formatting.
Please copy the full contents of the error messages and paste them here.
Do you have any specific questions about the assignment?
If you don't understand my answer, don't ignore it, ask a question.