Insert uml design diagrams, use case, classes

Assignment Help JAVA Programming
Reference no: EM1317342

import java.io.*;

importjava.util.Scanner;

 

/*******************************************************************************

 * Year3000 program

 *

 * Driver program for the DateInterface and MyDate class.

 *

 * @authorStudent Name

 * @date

 * @version 1.0

 ******************************************************************************/

publicclass Year3000 {

       publicstaticvoid main(String[] args) throwsIOException {

 

logic here...

       }

 

       /*******************************************************************************

        * userMenu method

        *

        * This method displays the user menu to the console.

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        ******************************************************************************/

       publicstaticvoiduserMenu() {

 

logic here...

       }

}

/**

Interface for Date objects to be used by the Year3000 driver program.

*/

publicinterfaceDateInterface

{

/**    @return the day of the month (1-31) */

publicintgetDay();

/**    @return the day of the week (0-6) */

publicintgetDow();

/**    @return the month of the year (1-12) */

publicintgetMonth();

/**    @return the year (four digits) */

publicintgetYear();

/** sets the date

       @param m the month of the year (1-12)

       @param d the day of the month (1-31)

       @param y the year (four digits)

@paramdow the day of the week (0-6) */

publicvoid set(int m, int d, int y, intdow);

/** moves the date forward by exactly one day

       @return */

publicvoid tomorrow();

/**    @return the date as a String in the format "Monday March 18, 2002" */

public String toString();

/**    Moves the date backward by exactly one day. */

publicvoid yesterday();

/** sets the date to today;

make this empty {} unless you do the extra credit. */

publicvoid today();

}

 

importjava.util.Calendar;

importjava.util.GregorianCalendar;

 

/*******************************************************************************

 * MyDate Class

 *

 * Description here....

 *

 * Preconditions:

 * Postconditions:

 *

 * @authorStudent Name

 * @date

 * @version 1.0

 *

 ******************************************************************************/

publicclassMyDateimplementsDateInterface {

 

       declarations here....

 

       publicMyDate() {

 

       }

 

       /*******************************************************************************

        * MyDate d

        *

        * Description here....

        *

        * Preconditions:

        * Postconditions:

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        * @param d

        ******************************************************************************/

       publicMyDate(MyDate d) {

 

              logic and method calls for date here...

       }

 

       /*******************************************************************************

        * set method

        *

        * Description here...

        *

        * Preconditions:

        * Postconditions:

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        * @paramDateInterface

        * @param #set(int, int, int, int)

        ******************************************************************************/

       publicvoid set(int m, int d, int y, intdw) {

 

variable assignments here...

       }

 

       /*******************************************************************************

        * tomorrow method

        *

        * Description here...

        *

        * Preconditions:

        * Postconditions:

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        * @paramDateInterface

        * @returnMyDate

        ******************************************************************************/

       publicvoid tomorrow() {

 

              logic here...

       }

 

       /*******************************************************************************

        * checkLeapYear method

        *

        * Description here....

        *

        * Preconditions:

        * Postconditions:

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        * @returnboolean

        ******************************************************************************/

       publicbooleancheckLeapYear() {

 

              logic here...

       }

 

       /*******************************************************************************

        * checkDaysInMonth method

        *

        * Description here....

        *

        * Preconditions:

        * Postconditions:

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        * @return integer

        * @paramlpYr

        ******************************************************************************/

       publicintcheckDaysInMonth(booleanlpYr) {

 

              logic here....

       }

 

       /*******************************************************************************

        * toString method

        *

        * Description here....

        *

        * Preconditions:

        * Postconditions:

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        * @return String

        * @param java

        * @return formatted dateString

        ******************************************************************************/

       public String toString() {

 

              logic here...

       }

 

       /*******************************************************************************

        * yesterday method

        *

        * Description here....

        *

        * Preconditions:

        * Postconditions:

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        * @return String

        * @paramDateInterface

        * @returnMyDate

        ******************************************************************************/

       publicvoid yesterday() {

 

logic here....

       }

 

       /*******************************************************************************

        * today method

        *

        * Description here....

        *

        * Pre-conditions:

        * Post-conditions:

        *

        * @authorStudent Name

        * @date

        * @version 1.0

        * @return void

        * @paramDateInterface

        * @return month, day, year, dow as integers

        ******************************************************************************/

       publicvoid today() {

 

logic here...

       }

}

 

Insert UML design diagrams here (use case, class, and sequence diagram).

Reference no: EM1317342

Questions Cloud

Situational analysis : A situational analysis allows an organisation to understand its external and internal health, which may entail its customers, the market environment, competition and other areas.
Appreciation for the value of consulting secondary resources : Objectives: Appreciation for the value of consulting secondary resources in assisting the researcher in fully understanding legal issues; in assisting the researcher in further refining legal issues; and in assisting the researcher in locating additi..
Research and writing : Research and Writing: Brief Assignment,  Review the fact pattern provided below. At this time, Mr. Kant stands convicted of either petit larceny or shoplifting, as dictated by your state statutes,
Measure the distance pa, pb, pc : Measure the distance PA, PB, PC etc. from p to various point with chain or tape and plot them to scale along the co responding rays. Join the points a, b, c, etc. to give outline of survey.
Insert uml design diagrams, use case, classes : Insert UML design diagrams here (use case, class, and sequence diagram).
Create your own date class : You are to write a program that determines the day of the week for New Year's Day in the year 3000. To do this, you must create your own date class (MyDate) and use the following interface and main program:
Write a class array that encapsulates an array : Write a class Array that encapsulates an array and provides bounds-checked access. The private instance variables should be int index and inarray[10]. The public members should be a default constructor and methods (signatures shown below) to provide ..
Uml exercise : UML Exercise: Automated Teller Machine (ATM),   1. To allow authorized card holders to make transactions,   Brief Summary of Requirements:
What is economics system : What is economics system? What are the types of economics system? Briefly explain each type of economics system by giving examples of nations that are close to each type

Reviews

Write a Review

JAVA Programming Questions & Answers

  Design and implement a small and simple email server

Design and implement a small and simple email server using the concept of web based information system (WBIS).

  Java project

Prompt the user for an int between lower and upper boundary.

  Create a java class called samearraysexception

Create a Java class called SameArraysException that extends the Exception class.

  Socket programming in java: tcp

In this project we will develop a Web server in two steps. In the end, you will have built a multi-threaded Web server that is capable of processing multiple simultaneous service requests in parallel.

  Classes and pointers experience using dynamic memory

To practice defining classes using separate compilation using classes, vectors, and pointers experience using dynamic memory.

  Implement avl tree

Implement AVL trees that allows both iterative traversal and recursive traversal.

  Write a program that reads a set of floating-point

Write a program that reads a set of floating-point data values from the input.

  Mean and standard deviation using using eclipse

Java programming to calculate Mean and standard deviation using Using Eclipse.

  User session mgr - socket and thread programs

User Session Mgr - Socket and Thread Programs

  Write a recursive program

Write a recursive program to compute the number of ways in which an integer k can be written as sum

  Design a single class that expresses the commonality

Design a single class that expresses the commonality of these concepts.

  Implementation activities of software development

Analysis, design, and implementation activities of software development

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd