Microsoft Word - ITECH7201 Assignment XXXXXXXXXXdocx ITECH 7201: Software Analysis and Design CRICOS Provider No. 00103D ITECH7201 Assignment XXXXXXXXXXdocx Page 1 of 4 Assignment 1 Overview You are...

1 answer below »
Hi I have attached my assignment. Would you please have a look and let me know please.


Microsoft Word - ITECH7201 Assignment 1 2007.docx ITECH 7201: Software Analysis and Design CRICOS Provider No. 00103D ITECH7201 Assignment 1 2007.docx Page 1 of 4 Assignment 1 Overview You are required to design and develop a small console application in any Object-Oriented Programming Language. Completion of this assignment requires an understanding of:  Analysis and design techniques, including the development of use cases and UML diagrams – specifically, use case diagrams, class diagrams, and sequence diagrams  Object-oriented programming, focusing on polymorphism and the use of interfaces Timelines and Expectations Percentage Value of Task: 20% Due: Sun, May 10, 2020 - 23:55 (week 7) Minimum time expectation: 20 hours Assignment Type: Individual Learning Outcomes Assessed The following course learning outcomes are assessed by completing this assessment:  Understand the significance of detailed project planning and control, good communication and documentation and the use of appropriate tools in order to provide a quality product  Understand the distinction between software engineering and programming, and thus the distinction between a software configuration and a program  Understand the methods and techniques involved in designing, implementing and maintaining an information system, in particular using an object-oriented approach  Demonstrate skills in designing and implementing an information system. Assessment Details Ana, the owner of Delicious Pizza and Pasta, is opening a takeaway shop for selling Pizza and Pasta to the customers. She wants to offer some packages to the interested customers to promote her business. To do so, she is offering the following packages: Packages for Pizza 1 large Pizza 12 AUD 2 large Pizzas 22 AUD N large pizzas (For N>=3) N*10 AUD and the customer will receive 1 garlic bread for every three pizzas [For example, if a customer is interested to buy 10 large pizzas, Ana will provide 3 complimentary garlic breads for 100 AUD] CRICOS Provider No. 00103D Page 2 of 4 Packages for Pasta 1 large Pasta 8 AUD 2 large Pasta 15 AUD M large Pasta (For M>=3) M*7 AUD and the customer will receive 1.25 Liter soft drinks for every 3 Pasta [For example, if a customer is interested to buy 6 large Pasta, Ana will provide 2 complimentary 1.25-liter soft drinks for 42 AUD] Special Offer For every 3 Pizzas AND 3 Pasta, Ana will give a small box of Baklava (a famous dessert item) in addition to garlic bread and 1.5-liter soft drinks You have agreed to design and develop a small console program for Ana, enabling her to select the appropriate item and the package, and calculate the corresponding cost. Once an order is processed, the program will return to the menu and ready to commence another order. This payment information should display:  total payment amounts received for pizza order  total payment amounts received for pasta order  total amount of pizzas and pasta sold in that session* *A session indicates the duration Ana is using the program after opening it. There is no need for this data to persist once the program has stopped running. Ana wants the system to be flexible so that she can include additional items and packages at a later date without having to rewrite the entire program. This means you will need to use an interface for processing payments, and polymorphism for the various food item classes, so that the new and different packages may be added at a later date with minimal updates to the code. She asked that you provide her with some documentation before you commence coding so that she is able to verify that the program you intend to code will address her requirements. She would like to see the use cases to summarize the requirements in written format, as well as use case diagrams, class diagrams and sequence diagrams. Submission You are required to submit the assignment before the due date consisting of:  A Zip file containing the following (submitted via Moodle under the Assignment 1 link) o A written report comprising:  Use Cases summarizing the requirements  UML Diagrams, created in Enterprise Architect, comprising:  a Use Case Diagram for processing an order  a Class Diagram of the intended system  a Sequence Diagram for processing an order  A short reflection (approximately 200-240 words) of what you have learned, if anything, on this assignment, particularly relating to requirements design and analysis, UML diagrams and object- oriented programming with interfaces and polymorphism. As an example, if you find that you CRICOS Provider No. 00103D Page 3 of 4 changed your initial UML diagrams after you had commenced coding, you should explain what these changes were and explain what you learnt that led to these changes. o Enterprise Architect file(s) containing your UML Diagrams for the Use Case, Class and Sequence Diagrams o Your finished program (in any OOP language), addressing the requirements outlined in the Assignment Details. Marking Criteria/Rubric Task Available Marks Student’s Marks Requirements Analysis and Design  Use Cases summarizing the requirements of the program 2  A Use Case Diagram for processing an order 2  A Class Diagram of the intended system 2  A Sequence Diagram for processing a customer’s order 2 Development of Code A complete Java program addressing the requirements outlined in the Assignment Details section of this specification, including:  Functionality to process the ordering 1  Functionality to process the orders of various amount 2  A progressive payments menu option that displays the total income received from both the items (pizza & pasta) individually and the total income from all orders 1  Code demonstrating the use of an interface and polymorphism to handle item fires and the various item options available 6 Reflection on Learning  A short reflection (approximately 200-300 words) of what you have learned, if anything, on this assignment, particularly relating to requirements design and analysis, UML diagrams and object-oriented programming with interfaces and polymorphism. 2 Total 20 Feedback Marks will be uploaded in fdlGrades and a completed marking guide provided in Moodle within 2 weeks of assignment submission. Plagiarism: Plagiarism is the presentation of the expressed thought or work of another person as though it is one's own without properly acknowledging that person. You must not allow other students to copy your work and must take care to safeguard against this happening. More information about the plagiarism policy CRICOS Provider No. 00103D Page 4 of 4 and procedure for the university can be found at http://federation.edu.au/students/learning-and- study/online-help-with/plagiarism.
Answered Same DayApr 22, 2021ITECH7201

Answer To: Microsoft Word - ITECH7201 Assignment XXXXXXXXXXdocx ITECH 7201: Software Analysis and Design CRICOS...

Neha answered on May 09 2021
142 Votes
55177/PizzaPasta.java
55177/PizzaPasta.java
import java.util.*;
public class PizzaPasta
{
    public static void main(String[] args) 
    {
        new PizzaPasta().menu();

    }
    Scanner sc= new Scanner(System.in); 
    int totalOrder = 0;
    int totalPizzaPrice = 0;
    int totalPastaPrice = 0;

    public void pasta()
    {
        int totalAmountToBePaid;
        int noOfPasta;
        int drink;
        System.out.println("Enter number of pasta");
        noOfPasta= sc.nextInt();
        if (noOfPasta == 1)
        {
            totalAmountToBePaid = 12;
        }
        else if (noOfPasta == 2)
        {
            totalAmountToBePaid = 22;
        }
        else
        {
            totalAmountToBePaid = noOfPasta * 10;
        }
        drink = noOfPasta / 3;
        System.out.println("Pasta ordered:" + noOfPasta);
        totalOrder += noOfPasta;
        System.out.println("Amount to be paid: $" + totalAmountToBePaid);
        totalPastaPrice += totalAmountToBePaid;
        System.out.println("Complimentary 1.25Ltr Soft drink:" + drink);
    }
    public void pizza() 
    {
        int totalAmountToBePaid;
        int noOfPizzas;
        int bread;
        System.out.println("Enter number of pizza");
        noOfPizzas= sc.nextInt();
        if (noOfPizzas == 1)
        {
            totalAmountToBePaid = 12;
        }
        else if (noOfPizzas == 2)
        {
            totalAmountToBePaid = 22;
        }
        else
        {
            totalAmountToBePaid = noOfPizzas * 10;
        }
        bread = noOfPizzas / 3;
        System.out.println("Pizzas ordered:" + noOfPizzas);
        totalOrder += noOfPizzas;
        System.out.println("Amount to be paid: $" + totalAmountToBePaid);
        totalPizzaPrice += totalAmountToBePaid;
        System.out.println("Complimentary garlic bread:" + bread);
    }
    public void both()
    {
        int answer=0;
        System.out.println("Buying 3 pasta and 3 pizza would give you");
        System.out.println("One Baklava Cake \n One Garlic bread \n One 1.25ltr Soft Drink");
        System.out.println("Enter 1 to continue to any other key to return to main menu");
        answer= sc.nextInt();
        if (answer == 1)
        {
            totalOrder += 6;
            totalPastaPrice += 21;
            totalPizzaPrice += 30;
            System.out.println("Pizzas ordered: 3");
            System.out.println("Pastas ordered: 3");
            System.out.println("Complimentary: \n Baklava and 1.25Ltr Soft drink and 1 Garlic Bread");
        }
        else
        {
            menu();
        }
    }
    public void payment()
    {
        System.out.println("Total payment amounts received for pizza order: $"+ totalPizzaPrice);
        System.out.println("Total payment amounts received for pasta order : $"+ totalPastaPrice);
        System.out.println("Total amount of pizzas and pasta sold in that session: "+ totalOrder);
    }
    public void exit()
    {
        payment();
        System.out.println("Exiting....");
        System.exit(0);
    }
    public void menu()
    {
        while(true)
        {
            System.out.println("Select one of the option");
            System.out.println("1. Order Pizza");
            System.out.println("2. Order Pasta");
            System.out.println("3. Order both");
            System.out.println("4. View payment");
            System.out.println("5. Exit");
            int choice= sc.nextInt();
            switch(choice) 
            {
                case 1: pizza();
                break;
                case 2:  pasta(); 
                break;
                case 3:  both(); 
                break;
                case 4: payment();
                break;
                case 5: exit();
                break;
                default:  System.out.println("Please select valid option");
                break;
            }
        }
    }
}
55177/Report.docx
Sab Shop
This report is to understand the working of the system. This system is console based which is designed for Sab. She is the admin of the system and can use all the functions. The system displays a menu of the shop out of which 1 can be selected. The system allows her to enter the number of either pasta or pizza.
Pizza
1 Pizza = $12
2 Pizza = $22
More than 2 Pizzas = Each pizza $10 and 1 complimentary garlic bread for each 3 Pizzas
Pastas
1 Pasta = $8
2 Pastas = $15
More than 2 Pastas = Each Pastas $10 and 1 complimentary 1.25ltr Soft Drink for each 3 Pastas
Special Offer comprises of 1 Baklava, 1 Garlic Bread and a 1.25ltr soft drink for 3 pizzas and 3 pastas.
Once the order is completed it shows the total amount received for pizzas, total amount received for pastas and total number of pizzas and pastas sold together.
The calculation is for one session only until Sab exists the system.
Class Diagram
Use Case Diagram
Sequence Diagram
Reflection
While working on this code, I found that it is not easy to work with Java. We need to have complete knowledge about the classes, methods, and objects. I created a single class for the whole system and multiple methods were created inside the class. The variables of a class are global for all the methods All the methods from the code can access the global variable declared in the code. I have used global variable to store total amount for the pasta, total amount for pizza and the number of pizzas and pasta sold. In this code, I came to know about the different types of methods. I was trying to call the menu method in the main method was it was continuously showing the error that “non-static variable cannot be referenced from a static method”. The main method was static, but menu was not. I tried different ways to solve this issue and then googled it. There were 2-3 possible solutions available. I used to refer the new object of the class to use it in static method. If we call a non-static method using the class object, then we can call the it in static method also. It was fun working in java and I learnt different concept about the OOPs.
55177/Sab.eapx
        Object_ID        Name        Scope        Stereotype        Containment        IsStatic        IsCollection        IsOrdered        AllowDuplicates        LowerBound        UpperBound        Container        Notes        Derived        ID        Pos        GenOption        Length        Precision        Scale        Const        Style        Classifier        Default        Type        ea_guid        StyleEx
        16        Both()        Public                Not Specified        0        0        0        0        1        1                                1        0                                                        0                void        {9203C1E9-2B43-4c50-8C6A-48A265A1F3FC}        volatile=0;
        16        Pasta()        Public                Not Specified        0        0        0        0        1        1                                2        1                                                        0                void        {316D2AE2-BC88-438a-A74B-08AFBAB371AA}        volatile=0;
        16        Pizza()        Public                Not Specified        0        0        0        0        1        1                                3        2                                                        0                void        {6B15349F-E860-4edc-A8C3-A57850A433C1}        volatile=0;
        16        Payment()        Public                Not Specified        0        0        0        0        1        1                                4        3                                                        0                void        {B7DF0D82-D2DD-4762-8CF7-BC74CC61A92A}        volatile=0;
        16        Menu()        Public                Not Specified        0        0        0        0        1        1                                5        4                                                        0                void        {B685C5B2-6497-414d-9B3C-4396F91B53E0}        volatile=0;
        8        Total Order        Private                Not Specified        0        0        0        0        1        1                                6        0                                                                        int        {F48CD5BB-EA67-4c4f-A83B-8D375639B107}        volatile=0;
        8        PizzaAmount        Private                Not Specified        0        0        0        0        1        1                                7        1                                                                        int        {37F504CC-587F-480b-89D3-7457F79C3762}        volatile=0;
        8        PastaAmount        Private                Not Specified        0        0        0        0        1        1                                8        2                                                                        int        {46FFA05A-A78C-4158-BD1C-9FF73EA3B5AB}        volatile=0;
        Object_ID        Constraint        AttName        Type        Notes        ID
        PropertyID        ElementID        Property        VALUE        NOTES        ea_guid
        AuthorName        Roles        Notes
        Cardinality
        *
        0
        0..*
        0..1
        1
        1..
        1..*
        CategoryID        Name        Type        NOTES
        Name        Organisation        Phone1        Phone2        Mobile        Fax        Email        Roles        Notes
        Complexity        NumericWeight
        Extreme        6
        High        4
        Low        2
        Medium        3
        V.High        5
        V.Low        1
        Connector_ID        Name        Direction        Notes        Connector_Type        SubType        SourceCard        SourceAccess        SourceElement        DestCard        DestAccess        DestElement        SourceRole        SourceRoleType        SourceRoleNote        SourceContainment        SourceIsAggregate        SourceIsOrdered        SourceQualifier        DestRole        DestRoleType        DestRoleNote        DestContainment        DestIsAggregate        DestIsOrdered        DestQualifier        Start_Object_ID        End_Object_ID        Top_Start_Label        Top_Mid_Label        Top_End_Label        Btm_Start_Label        Btm_Mid_Label        Btm_End_Label        Start_Edge        End_Edge        PtStartX        PtStartY        PtEndX        PtEndY        SeqNo        HeadStyle        LineStyle        RouteStyle        IsBold        LineColor        Stereotype        VirtualInheritance        LinkAccess        PDATA1        PDATA2        PDATA3        PDATA4        PDATA5        DiagramID        ea_guid        SourceConstraint        DestConstraint        SourceIsNavigable        DestIsNavigable        IsRoot        IsLeaf        IsSpec        SourceChangeable        DestChangeable        SourceTS        DestTS        StateFlags        ActionFlags        IsSignal        IsStimulus        DispatchAction        Target2        StyleEx        SourceStereotype        DestStereotype        SourceStyle        DestStyle        EventFlags
        1                Source -> Destination                Dependency                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                2        3                                                        0        0        0        0        0        0        0        0        0        3        0        -1                0                                                SX=0;SY=0;EX=0;EY=0;        0        {09B705AC-8FF5-4e7e-A6F9-4BC5FF8870C2}                        false        true        false        false        false        none        none        instance        instance                        false        false                3801168                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        3                Source -> Destination                Dependency                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                2        4                                                        0        0        0        0        0        0        0        0        0        3        0        -1                0                                                SX=0;SY=0;EX=0;EY=0;        0        {2B182AB6-BE18-4e56-9CC3-6493562A3FDD}                        false        true        false        false        false        none        none        instance        instance                        false        false                0                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        4                Source -> Destination                Dependency                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                2        5                                                        0        0        0        0        0        0        0        0        0        3        0        -1                0                                                SX=0;SY=0;EX=0;EY=0;        0        {5579700B-671E-4156-AC95-0AFBD58859A1}                        false        true        false        false        false        none        none        instance        instance                        false        false                0                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        5                Source -> Destination                Dependency                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                2        6                                                        0        0        0        0        0        0        0        0        0        3        0        -1                0                                                SX=0;SY=0;EX=0;EY=0;        0        {93CF8E3E-CEA2-4a3d-BE0B-366427119C21}                        false        true        false        false        false        none        none        instance        instance                        false        false                6684780                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        6                Unspecified                Association                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                7        8                                                        0        0        0        0        0        0        0        0        0        3        0        -1                0                                                SX=0;SY=0;EX=0;EY=0;        0        {130627B4-BED9-431a-881F-2C911023C882}                        false        false        false        false        false        none        none        instance        instance                        false        false                6357093                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Unspecified;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Unspecified;        
        7                Unspecified                Association                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                7        10                                                        0        0        0        0        0        0        0        0        0        3        0        -1                0                                                SX=0;SY=0;EX=0;EY=0;        0        {9F0C1608-E76F-4549-9376-A9137B52C97E}                        false        false        false        false        false        none        none        instance        instance                        false        false                6488169                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Unspecified;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Unspecified;        
        8                Unspecified                Association                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                7        11                                                        0        0        0        0        0        0        0        0        0        3        0        -1                0                                                SX=0;SY=0;EX=0;EY=0;        0        {50F6AEF0-68A6-4dfc-BAF7-2590EF18C081}                        false        false        false        false        false        none        none        instance        instance                        false        false                7602287                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Unspecified;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Unspecified;        
        9                Unspecified                Association                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                7        16                                                        0        0        0        0        0        0        0        0        0        3        0        -1                0                                                SX=0;SY=0;EX=0;EY=0;        0        {8649A8E2-8AA4-4d5f-AB6C-D85AAE09A306}                        false        false        false        false        false        none        none        instance        instance                        false        false                6750313                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Unspecified;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Unspecified;        
        10        Select option        Source -> Destination                Sequence                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                17        18                                                        2        4        112        -205        289        -205        3        0        0        1        0        -1                0                Synchronous        retval=void;        Call        0        SX=0;SY=0;EX=0;EY=0;$LLB=;LLT=;LMT=CX=58:CY=14:OX=0:OY=0:HDN=0:BLD=0:ITA=0:UND=0:CLR=-1:ALN=1:DIR=0:ROT=0;LMB=;LRT=;LRB=;IRHS=;ILHS=;        5        {EFDF37EA-4042-424d-8DFF-AFD8ED5AF262}                        false        true        false        false        false        none        none        instance        instance        Activation=0;ExtendActivationUp=0;                false        false                0                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        11        Get content        Source -> Destination                Sequence                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                18        19                                                        2        4        300        -135        495        -135        1        0        0        1        0        -1                0                Synchronous        retval=void;        Call        0        SX=0;SY=0;EX=0;EY=0;$LLB=;LLT=;LMT=CX=53:CY=14:OX=0:OY=0:HDN=0:BLD=0:ITA=0:UND=0:CLR=-1:ALN=1:DIR=0:ROT=0;LMB=;LRT=;LRB=;IRHS=;ILHS=;        5        {B969A93C-0F42-472f-B347-60E6C25DA0D9}                        false        true        false        false        false        none        none        instance        instance        Activation=0;ExtendActivationUp=0;                false        false                0                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        12        Display Content        Source -> Destination                Sequence                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                19        18                                                        4        2        496        -170        300        -170        2        0        0        1        0        -1                0                Synchronous        retval=void;        Call        0        SX=0;SY=0;EX=0;EY=0;$LLB=;LLT=;LMT=CX=69:CY=14:OX=0:OY=0:HDN=0:BLD=0:ITA=0:UND=0:CLR=-1:ALN=1:DIR=0:ROT=0;LMB=;LRT=;LRB=;IRHS=;ILHS=;        5        {E39C597C-39A1-4ff3-AD20-8884AFCFA252}                        false        true        false        false        false        none        none        instance        instance        Activation=0;                false        false                0                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        13        Enter choice        Source -> Destination                Sequence                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                17        18                                                        2        4        112        -257        289        -257        4        0        0        1        0        -1                0                Synchronous        retval=void;        Call        0        SX=0;SY=-17;EX=0;EY=0;$LLB=;LLT=;LMT=CX=55:CY=14:OX=0:OY=0:HDN=0:BLD=0:ITA=0:UND=0:CLR=-1:ALN=1:DIR=0:ROT=0;LMB=;LRT=;LRB=;IRHS=;ILHS=;        5        {BD644B9D-13E8-4324-98BC-D1DFAD6C77C9}                        false        true        false        false        false        none        none        instance        instance                        false        false                0                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        14        Get selection        Source -> Destination                Sequence                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                18        19                                                        2        4        300        -292        495        -292        5        0        0        1        0        -1                0                Synchronous        retval=void;        Call        0        SX=0;SY=0;EX=0;EY=0;$LLB=;LLT=;LMT=CX=58:CY=14:OX=0:OY=0:HDN=0:BLD=0:ITA=0:UND=0:CLR=-1:ALN=1:DIR=0:ROT=0;LMB=;LRT=;LRB=;IRHS=;ILHS=;        5        {178FC13D-DD45-46df-B984-74742360A48F}                        false        true        false        false        false        none        none        instance        instance        Activation=0;                false        false                0                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        15        Generate Bill        Source -> Destination                Sequence                        Public                        Public                                        Unspecified        0        0                                        Unspecified        0        0                19        18                                                        4        2        496        -329        300        -329        6        0        0        1        0        -1                0                Synchronous        retval=void;        Call        0        SX=0;SY=-2;EX=0;EY=0;$LLB=;LLT=;LMT=CX=57:CY=14:OX=0:OY=0:HDN=0:BLD=0:ITA=0:UND=0:CLR=-1:ALN=1:DIR=0:ROT=0;LMB=;LRT=;LRB=;IRHS=;ILHS=;        5        {6FB6D6A1-DFD7-42a9-ADA3-E4CF325FAFC6}                        false        true        false        false        false        none        none        instance        instance        Activation=0;                false        false                0                                Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Non-Navigable;        Union=0;Derived=0;AllowDuplicates=0;Owned=0;Navigable=Navigable;        
        ConnectorID        Constraint        ConstraintType        Notes
        PropertyID        ElementID        Property        VALUE        NOTES        ea_guid
        Connector_Type        Description
        Abstraction        Abstraction
        Aggregation        Aggregation
        Assembly        Assembly
        Association        Association
        Collaboration        Collaboration
        CommunicationPath        CommunicationPath
        Connector        Composite Connector
        ControlFlow        ControlFlow
        Delegate        Delegate
        Dependency        Dependency
        Deployment        Deployment
        ERLink        ERLink
        Extension        Extension
        Generalization        Generalization
        InformationFlow        InformationFlow
        Instantiation        Instantiation
        InterruptFlow        InterruptFlow
        Manifest        Manifest
        Nesting        Nesting
        NoteLink        NoteLink
        ObjectFlow        ObjectFlow
        Package        Package
        ProtocolConformance        ProtocolConformance
        ProtocolTransition        ProtocolTransition
        Realisation        Realisation
        Sequence        Sequence
        StateFlow        StateFlow
        Substitution        Substitution
        Usage        Usage
        UseCase        UseCase
        ConstantName        ConstantValue
        CompanyName        Sparx Systems
        ECF_EC        1.4
        ECF_EWF        -0.03
        HoursPerUCP        20
        ProjectName        DOJ
        TCF_TC        0.6
        TCF_TWF        0.01
        Constraint        Description        Notes
        Invariant        A state the object must always be in        
        Post-condition        An ending state that must be met        
        Pre-condition        A starting state that must be met        
        Process        A process that must occur        
        Type        ProductName        DataType        Size        MaxLen        MaxPrec        MaxScale        DefaultLen        DefaultPrec        DefaultScale        User        PDATA1        PDATA2        PDATA3        PDATA4        HasLength        GenericType        DatatypeID
        DDL        Oracle        CHAR        1        2000        0        0        1        0        0        0                                                char        1
        DDL        Oracle        VARCHAR2        1        4000        0        0        50        0        0        0                                                varchar        2
        DDL        Oracle        VARCHAR        1        4000        0        0        50        0        0        0                                                varchar        3
        DDL        Oracle        NCHAR        1        2000        0        0        50        0        0        0                                                nchar        4
        DDL        Oracle        NVARCHAR        1        4000        0        0        50        0        0        0                                                nvarchar        5
        DDL        Oracle        FLOAT        1        126        0        0        126        0        0        0                                                float        6
        DDL        Oracle        NUMBER        2        0        38        0        0        8        2        0                                                number        7
        DDL        Oracle        DATE        0        0        0        0        0        0        0        0                                                datetime        8
        DDL        Oracle        ROWID        0        0        0        0        0        0        0        0                                                uniqueidentifier        9
        DDL        Oracle        RAW        1        2000        0        0        2000        0        0        0                                                binary        10
        DDL        Oracle        LONG RAW        0        0        0        0        0        0        0        0                                                binary        11
        DDL        Oracle        CLOB        0        0        0        0        0        0        0        0                                                text        12
        DDL        Oracle        LONG        0        0        0        0        0        0        0        0                                                long        13
        DDL        Oracle        NCLOB        0        0        0        0        0        0        0        0                                                ntext        15
        DDL        Oracle        BLOB        0        0        0        0        0        0        0        0                                                blob        16
        DDL        Oracle        BFILE        0        0        0        0        0        0        0        0                                                blob        17
        DDL        SQLServer7        binary        1        8000        0        0        10        0        0        0                                                binary        18
        DDL        SQLServer7        bit        0        0        0        0        0        0        0        0                                                boolean        19
        DDL        SQLServer7        char        1        8000        0        0        1        0        0        0                                                char        20
        DDL        SQLServer7        datetime        0        0        0        0        0        0        0        0                                                DateTime        21
        DDL        SQLServer7        decimal        2        0        38        0        0        18        0        0                                                decimal        22
        DDL        SQLServer7        float        1        53        0        0        53        0        0        0                                                float        23
        DDL        SQLServer7        image        0        0        0        0        0        0        0        0                                                binary        24
        DDL        SQLServer7        int        0        0        0        0        0        0        0        0                                                integer        25
        DDL        SQLServer7        money        0        0        0        0        0        0        0        0                                                currency        26
        DDL        SQLServer7        nchar        1        4000        0        0        10        0        0        0                                                nchar        27
        DDL        SQLServer7        ntext        0        0        0        0        0        0        0        0                                                ntext        28
        DDL        SQLServer7        nvarchar        1        4000        0        0        50        0        0        0                                                nvarchar        29
        DDL        SQLServer7        numeric        2        0        38        0        0        18        0        0                                                numeric        30
        DDL        SQLServer7        real        0        0        0        0        0        0        0        0                                                real        31
        DDL        SQLServer7        smalldatetime        0        0        0        0        0        0        0        0                                                datetime        32
        DDL        SQLServer7        smallint        0        0        0        0        0        0        0        0                                                smallint        33
        DDL        SQLServer7        smallmoney        0        0        0        0        0        0        0        0                                                money        34
        DDL        SQLServer7        text        0        0        0        0        0        0        0        0                                                text        35
        DDL        SQLServer7        timestamp        0        0        0        0        0        0        0        0                                                timestamp        36
        DDL        SQLServer7        tinyint        0        0        0        0        0        0        0        0                                                tinyint        37
        DDL        SQLServer7        varchar        1        8000        0        0        50        0        0        0                                                varchar        38
        DDL        SQLServer7        varbinary        1        8000        0        0        50        0        0        0                                                varbinary        39
        DDL        SQLServer7        uniqueidentifier        0        0        0        0        0        0        0        0                                                uniqueidentifier        40
        DDL        MSAccess        Text        1        255        0        0        50        0        0        0                                                char        41
        DDL        MSAccess        Memo        0        65535        0        0        0        0        0        0                                                text        42
        DDL        MSAccess        DateTime        0        0        0        0        0        0        0        0                                                datetime        43
        DDL        MSAccess        Integer        0        0        0        0        0        0        0        0                                                integer        45
        DDL        MSAccess        Long        0        0        0        0        0        0        0        0                                                long        46
        DDL        MSAccess        Single        0        0        7        0        0        0        7        0                                                float        47
        DDL        MSAccess        Double        0        0        0        0        0        0        0        0                                                double        48
        DDL        MSAccess        Counter        0        0        0        0        0        0        0        0                                                counter        49
        DDL        MSAccess        YesNo        0        0        0        0        0        0        0        0                                                boolean        50
        Code        Visual Basic        Boolean        0        0        0        0        0        0        0        0                                                Boolean        51
        Code        Visual Basic        Byte        0        0        0        0        0        0        0        0                                                Byte        52
        Code        Visual Basic        Currency        0        0        0        0        0        0        0        0                                                Currency        53
        Code        Visual Basic        Date        0        0        0        0        0        0        0        0                                                DateTime        54
        Code        Visual Basic        Double        0        0        0        0        0        0        0        0                                                Double        55
        Code        Visual Basic        Integer        0        0        0        0        0        0        0        0                                                Integer        56
        Code        Visual Basic        Long        0        0        0        0        0        0        0        0                                                Long        57
        Code        Visual Basic        Object        0        0        0        0        0        0        0        0                                                        58
        Code        Visual Basic        Single        0        0        0        0        0        0        0        0                                                        59
        Code        Visual Basic        String        0        0        0        0        0        0        0        0                                                String        60
        Code        Visual Basic        Variant        0        0        0        0        0        0        0        0                                                Variant        61
        Code        C++        char        0        0        0        0        0        0        0        0                                                Char        62
        Code        C++        int        0        0        0        0        0        0        0        0                                                Integer        63
        Code        C++        short        0        0        0        0        0        0        0        0                                                Short        64
        Code        C++        long        0        0        0        0        0        0        0        0                                                Long        65
        Code        C++        float        0        0        0        0        0        0        0        0                                                Float        66
        Code        C++        double        0        0        0        0        0        0        0        0                                                Double        67
        Code        C++        void        0        0        0        0        0        0        0        0                                                        68
        Code        C++        unsigned char        0        0        0        0        0        0        0        0                                                        69
        Code        C++        unsigned int        0        0        0        0        0        0        0        0                                                Uint        70
        Code        C++        unsigned short        0        0        0        0        0        0        0        0                                                        71
        Code        C++        unsigned long        0        0        0        0        0        0        0        0                                                Ulong        72
        Code        Java        byte        0        0        0        0        0        0        0        0                                                Byte        73
        Code        Java        char        0        0        0        0        0        0        0        0                                                Char        74
        Code        Java        int        0        0        0        0        0        0        0        0                                                Integer        75
        Code        Java        short        0        0        0        0        0        0        0        0                                                Short        76
        Code        Java        boolean        0        0        0        0        0        0        0        0                                                Boolean        77
        Code        Java        long        0        0        0        0        0        0        0        0                                                Long        78
        Code        Java        float        0        0        0        0        0        0        0        0                                                Float        79
        Code        Java        double        0        0        0        0        0        0        0        0                                                Double        80
        Code        Delphi        Boolean        0        0        0        0        0        0        0        0                                                Boolean        81
        Code        Delphi        Byte        0        0        0        0        0        0        0        0                                                Byte        82
        Code        Delphi        Cardinal        0        0        0        0        0        0        0        0                                                        83
        Code        Delphi        Char        0        0        0        0        0        0        0        0                                                Char        84
        Code        Delphi        Currency        0        0        0        0        0        0        0        0                                                Currency        85
        Code        Delphi        Double        0        0        0        0        0        0        0        0                                                Double        86
        Code        Delphi        Extended        0        0        0        0        0        0        0        0                                                        87
        Code        Delphi        Integer        0        0        0        0        0        0        0        0                                                Integer        88
        Code        Delphi        LongInt        0        0        0        0        0        0        0        0                                                        89
        Code        Delphi        LongWord        0        0        0        0        0        0        0        0                                                Ulong        90
        Code        Delphi        Single        0        0        0        0        0        0        0        0                                                        91
        Code        Delphi        ShortInt        0        0        0        0        0        0        0        0                                                        92
        Code        Delphi        SmallInt        0        0        0        0        0        0        0        0                                                        93
        Code        Delphi        String        0        0        0        0        0        0        0        0                                                String        94
        Code        Delphi        Real        0        0        0        0        0        0        0        0                                                        95
        Code        Delphi        Variant        0        0        0        0        0        0        0        0                                                Variant        96
        Code        Delphi        Word        0        0        0        0        0        0        0        0                                                Word        98
        Code        C#        void        0        0        0        0        0        0        0        0                                                        99
        Code        C#        sbyte        0        0        0        0        0        0        0        0                                                        100
        Code        C#        byte        0        0        0        0        0        0        0        0                                                Byte        101
        Code        C#        short        0        0        0        0        0        0        0        0                                                Short        102
        Code        C#        ushort        0        0        0        0        0        0        0        0                                                Ushort        103
        Code        C#        int        0        0        0        0        0        0        0        0                                                Integer        104
        Code        C#        uint        0        0        0        0        0        0        0        0                                                Uint        105
        Code        C#        long        0        0        0        0        0        0        0        0                                                Long        106
        Code        C#        ulong        0        0        0        0        0        0        0        0                                                Ulong        107
        Code        C#        char        0        0        0        0        0        0        0        0                                                Char        108
        Code        C#        float        0        0        0        0        0        0        0        0                                                Float        109
        Code        C#        double        0        0        0        0        0        0        0        0                                                Double        110
        Code        C#        bool        0        0        0        0        0        0        0        0                                                Boolean        111
        Code        C#        decimal        0        0        0        0        0        0        0        0                                                Float        112
        Code        VBNet        Integer        0        0        0        0        0        0        0        0                                                Integer        113
        Code        VBNet        String        0        0        0        0        0        0        0        0                                                String        114
        Code        VBNet        Short        0        0        0        0        0        0        0        0                                                Short        115
        Code        VBNet        Long        0        0        0        0        0        0        0        0                                                Long        116
        Code        VBNet        Char        0        0        0        0        0        0        0        0                                                Char        117
        Code        VBNet        Byte        0        0        0        0        0        0        0        0                                                Byte        118
        Code        VBNet        Boolean        0        0        0        0        0        0        0        0                                                Boolean        119
        Code        VBNet        Double        0        0        0        0        0        0        0        0                                                Double        120
        Code        VBNet        Date        0        0        0        0        0        0        0        0                                                Date        121
        Code        VBNet        Object        0        0        0        0        0        0        0        0                                                        122
        Code        VBNet        Single        0        0        0        0        0        0        0        0                                                Single        123
        Code        VBNet        Datetime        0        0        0        0        0        0        0        0                                                DateTime        124
        Code        VBNet        Decimal        0        0        0        0        0        0        0        0                                                        125
        DDL        DB2        BIGINT        0        0        0        0        0        0        0        0                                                bigint        126
        DDL        DB2        CHARACTER        1        254        0        0        10        0        0        0                                                char        128
        DDL        DB2        DATE        0        0        0        0        0        0        0        0                                                date        130
        DDL        DB2        DECIMAL        2        31        31        0        0        5        0        0                                                decimal        131
        DDL        DB2        DOUBLE        0        0        0        0        0        0        0        0                                                double        132
        DDL        DB2        INTEGER        0        0        0        0        0        0        0        0                                                integer        133
        DDL        DB2        LONG VARCHAR        0        0        0        0        0        0        0        0                                                text        134
        DDL        DB2        REAL        0        0        0        0        0        0        0        0                                                real        135
        DDL        DB2        TIME        0        0        0        0        0        0        0        0                                                time        137
        DDL        DB2        TIMESTAMP        0        0        0        0        0        0        0        0                                                timestamp        138
        DDL        MySql        BIT        1        64        0        0        1        0        0        0                                                bit        140
        DDL        MySql        BOOL        0        0        0        0        0        0        0        0                                                boolean        141
        DDL        MySql        TINYINT        0        0        0        0        0        0        0        0                                                tinyint        142
        DDL        MySql        SMALLINT        0        0        0        0        0        0        0        0                                                smallint        143
        DDL        MySql        INTEGER        0        0        0        0        0        0        0        0                                                integer        144
        DDL        MySql        MEDIUMINT        0        0        0        0        0        0        0        0                                                mediumint        145
        DDL        MySql        BIGINT        0        0        0        0        0        0        0        0                                                bigint        146
        DDL        MySql        FLOAT        2        0        24        0        0        0        0        0                                                float        147
        DDL        MySql        DOUBLE        2        0        53        30        0        10        2        0                                                double        148
        DDL        MySql        DOUBLE PRECISION        2        0        53        30        0        10        2        0                                                double        149
        DDL        MySql        REAL        2        0        53        30        0        10        2        0                                                real        150
        DDL        MySql        NUMERIC        2        0        65        30        0        10        2        0                                                numeric        151
        DDL        MySql        DECIMAL        2        0        65        30        0        10        2        0                                                decimal        152
        DDL        MySql        DATE        0        0        0        0        0        0        0        0                                                date        153
        DDL        MySql        DATETIME        1        6        0        0        0        0        0        0                                                datetime        154
        DDL        MySql        TIME        1        6        0        0        0        0        0        0                                                time        155
        DDL        MySql        TIMESTAMP        1        6        0        0        0        0        0        0                                                timestamp        156
        DDL        MySql        CHAR        1        255        0        0        10        0        0        0                                                char        157
        DDL        MySql        VARCHAR        1        65535        0        0        50        0        0        0                                                varchar        158
        DDL        MySql        BLOB        0        0        0        0        0        0        0        0                                                blob        159
        DDL        MySql        TEXT        0        0        0        0        0        0        0        0                                                text        160
        DDL        SQL Server 2000        decimal        2        38        38        38        0        10        2        0                                                decimal        161
        DDL        SQL Server 2000        sql_variant        0        0        0        0        0        0        0        0                                                sqlvariant        162
        DDL        SQL Server 2000        numeric        2        38        38        38        0        10        2        0                                                numeric        163
        DDL        SQL Server 2000        varbinary        1        8000        0        0        50        0        0        0                                                varbinary        164
        DDL        SQL Server 2000        bit        0        0        0        0        0        0        0        0                                                boolean        165
        DDL        InterBase        integer        0        0        0        0        10        0        0        0                                                integer        167
        DDL        InterBase        smallint        0        0        0        0        10        0        0        0                                                smallint        168
        DDL        MySql        NCHAR        1        255        0        0        10        0        0        0                                                nchar        169
        DDL        InterBase        timestamp        0        0        0        0        0        0        0        0                                                datetime        170
        DDL        PostgreSQL        real        1        53        0        0        53        0        0        0                                                real        171
        DDL        SQL Server 2000        char        1        8000        0        0        10        0        0        0                                                char        174
        DDL        SQL Server 2000        timestamp        0        0        0        0        0        0        0        0                                                timestamp        175
        DDL        InterBase        double precision        0        0        0        0        0        0        0        0                                                double        178
        DDL        SQL Server 2000        binary        1        8000        0        0        10        0        0        0                                                Binary        179
        DDL        SQL Server 2000        image        0        0        0        0        0        0        0        0                                                blob        180
        DDL        SQL Server 2000        nvarchar        1        4000        0        0        50        0        0        0                                                nvarchar        181
        DDL        SQL Server 2000        smalldatetime        0        0        0        0        0        0        0        0                                                datetime        182
        DDL        PostgreSQL        numeric        2        0        1000        1000        0        0        0        0                                                numeric        183
        DDL        DB2        FLOAT        0        0        0        0        0        0        0        0                                                float        184
        DDL        PostgreSQL        integer        0        0        0        0        0        0        0        0                                                integer        185
        DDL        PostgreSQL        varchar        1        1048576        0        0        50        0        0        0                                                varchar        186
        DDL        InterBase        blob sub_type 0        0        0        0        0        0        0        0        0                                                blob        188
        DDL        SQL Server 2000        money        0        0        0        0        0        19        4        0                                                currency        190
        DDL        SQL Server 2000        ntext        0        0        0        0        0        0        0        0                                                ntext        191
        DDL        SQL Server 2000        uniqueidentifier        0        0        0        0        0        0        0        0                                                guid        192
        DDL        PostgreSQL        bigint        0        0        0        0        0        0        0        0                                                bigint        195
        DDL        DB2        SMALLINT        0        0        0        0        0        0        0        0                                                smallint        196
        DDL        MSAccess        OLEObject        0        0        0        0        0        0        0        0                                                blob        199
        DDL        SQL Server 2000        int        0        0        0        0        0        0        0        0                                                integer        201
        DDL        SQL Server 2000        datetime        0        0        0        0        0        0        0        0                                                datetime        203
        DDL        SQL Server 2000        float        0        53        0        0        53        0        0        0                                                float        204
        DDL        SQL Server 2000        nchar        1        4000        0        0        10        0        0        0                                                nchar        205
        DDL        Oracle        NVARCHAR2        1        4000        0        0        50        0        0        0                                                nvarchar        206
        DDL        InterBase        varchar        1        32767        0        0        50        0        0        0                                                varchar        209
        DDL        MSAccess        Byte        0        0        0        0        0        0        0        0                                                tinyint        210
        DDL        SQL Server 2000        real        0        53        0        0        53        0        0        0                                                double        211
        DDL        SQL Server 2000        text        0        0        0        0        0        0        0        0                                                text        212
        DDL        SQL Server 2000        tinyint        0        0        0        0        0        0        0        0                                                tinyint        213
        DDL        PostgreSQL        smallint        0        0        0        0        0        0        0        0                                                smallint        214
        DDL        SQL Server 2000        smallint        0        0        0        0        0        0        0        0                                                smallint        216
        DDL        SQL Server 2000        varchar        1        8000        0        0        50        0        0        0                                                varchar        217
        DDL        DB2        CHAR        1        254        0        0        10        0        0        0                                                char        218
        DDL        PostgreSQL        char        1        1048576        0        0        1        0        0        0                                                char        219
        DDL        PostgreSQL        decimal        2        0        1000        1000        0        0        0        0                                                decimal        220
        DDL        PostgreSQL        text        0        0        0        0        0        0        0        0                                                text        221
        DDL        SQL Server 2000        bigint        0        0        0        0        0        0        0        0                                                bigint        222
        DDL        SQL Server 2000        smallmoney        0        0        0        0        0        0        0        0                                                money        226
        DDL        InterBase        blob sub_type 1        0        0        0        0        0        0        0        0                                                text        227
        DDL        InterBase        char        1        32767        0        0        10        0        0        0                                                char        228
        DDL        PostgreSQL        boolean        0        0        0        0        0        0        0        0                                                boolean        230
        DDL        PostgreSQL        timestamp        1        6        0        0        0        0        0        0                                                datetime        231
        DDL        MySql        NVARCHAR        1        65535        0        0        50        0        0        0                                                nvarchar        232
        DDL        PostgreSQL        bytea        0        0        0        0        0        0        0        0                                                blob        233
        DDL        InterBase        decimal        2        0        64        64        0        10        2        0                                                decimal        235
        Code        PHP        var        0                        0                                1                                                var        236
        Code        C#        string        0                        0                                1                                                String        237
        Code        C++        wchar_t        0                        0                                1                                                Char        238
        Code        C++        bool        0                        0                                1                                                Boolean        239
        DDL        Sybase ASE        tinyint        0        0        0        0        0        0        0        0                                                tinyint        240
        DDL        Sybase ASE        smallint        0        0        0        0        0        0        0        0                                                smallint        241
        DDL        Sybase ASE        int        0        0        0        0        0        0        0        0                                                integer        242
        DDL        Sybase ASE        numeric        2        0        38        38        0        18        0        0                                                numeric        243
        DDL        Sybase ASE        decimal        2        0        38        38        0        18        0        0                                                decimal        244
        DDL        Sybase ASE        float        0        0        0        0        0        0        0        0                                                float        245
        DDL        Sybase ASE        double precision        0        0        0        0        0        0        0        0                                                double        246
        DDL        Sybase ASE        real        0        0        0        0        0        0        0        0                                                real        247
        DDL        Sybase ASE        smallmoney        0        0        0        0        0        0        0        0                                                money        248
        DDL        Sybase ASE        money        0        0        0        0        0        0        0        0                                                money        249
        DDL        Sybase ASE        smalldatetime        0        0        0        0        0        0        0        0                                                datetime        250
        DDL        Sybase ASE        datetime        0        0        0        0        0        0        0        0                                                datetime        251
        DDL        Sybase ASE        char        1        16384        0        0        50        0        0        0                                                char        252
        DDL        Sybase ASE        varchar        1        16384        0        0        100        0        0        0                                                varchar        253
        DDL        Sybase ASE        unichar        1        0        0        0        50        0        0        0                                                char        254
        DDL        Sybase ASE        univarchar        1        0        0        0        50        0        0        0                                                varchar        255
        DDL        Sybase ASE        nchar        1        16384        0        0        50        0        0        0                                                nchar        256
        DDL        Sybase ASE        nvarchar        1        16384        0        0        50        0        0        0                                                nvarchar        257
        DDL        Sybase ASE        text        0        0        0        0        50        0        0        0                                                text        258
        DDL        Sybase ASE        binary        1        255        0        0        1        0        0        0                                                binary        259
        DDL        Sybase ASE        image        0        0        0        0        0        0        0        0                                                blob        261
        DDL        Sybase ASE        bit        0        0        0        0        0        0        0        0                                                boolean        262
        DDL        Informix        INTEGER        0        0        0        0        0        0        0        0                                                integer        263
        DDL        Informix        INT        0        0        0        0        0        0        0        0                                                integer        264
        DDL        Informix        SMALLINT        0        0        0        0        0        0        0        0                                                smallint        265
        DDL        Informix        INT8        0        0        0        0        0        0        0        0                                                bigint        266
        DDL        Informix        SERIAL        0        0        0        0        0        0        0        0                                                integer        267
        DDL        Informix        SERIAL8        0        0        0        0        0        0        0        0                                                integer        268
        DDL        Informix        FLOAT        0        0        0        0        0        0        0        0                                                float        269
        DDL        Informix        SMALLFLOAT        0        4        0        0        4        0        0        0                                                float        270
        DDL        Informix        DECIMAL        2        0        32        32        0        8        3        0                                                decimal        271
        DDL        Informix        DEC        2        0        32        32        0        8        3        0                                                decimal        272
        DDL        Informix        MONEY        2        0        32        3        0        8        3        0                                                money        273
        DDL        Informix        DATE        0        0        0        0        0        0        0        0                                                date        274
        DDL        Informix        DATETIME HOUR TO MINUTE        0        0        0        0        0        0        0        0                                                datetime        275
        DDL        Informix        DATETIME YEAR TO YEAR        0        0        0        0        0        0        0        0                                                datetime        276
        DDL        Informix        DATETIME YEAR TO MONTH        0        0        0        0        0        0        0        0                                                datetime        277
        DDL        Informix        DATETIME YEAR TO DAY        0        0        0        0        0        0        0        0                                                datetime        278
        DDL        Informix        DATETIME YEAR TO HOUR        0        0        0        0        0        0        0        0                                                datetime        279
        DDL        Informix        DATETIME YEAR TO MINUTE        0        0        0        0        0        0        0        0                                                datetime        280
        DDL        Informix        DATETIME YEAR TO SECOND        0        0        0        0        0        0        0        0                                                datetime        281
        DDL        Informix        DATETIME YEAR TO FRACTION        1        5        0        0        3        0        0        0                                                datetime        282
        DDL        Informix        DATETIME MONTH TO MONTH        0        0        0        0        0        0        0        0                                                datetime        283
        DDL        Informix        DATETIME MONTH TO DAY        0        0        0        0        0        0        0        0                                                datetime        284
        DDL        Informix        DATETIME MONTH TO HOUR        0        0        0        0        0        0        0        0                                                datetime        285
        DDL        Informix        DATETIME MONTH TO MINUTE        0        0        0        0        0        0        0        0                                                datetime        286
        DDL        Informix        DATETIME MONTH TO SECOND        0        0        0        0        0        0        0        0                                                datetime        287
        DDL        Informix        DATETIME MONTH TO FRACTION        1        5        0        0        3        0        0        0                                                datetime        288
        DDL        Informix        DATETIME DAY TO DAY        0        0        0        0        0        0        0        0                                                datetime        289
        DDL        Informix        DATETIME DAY TO HOUR        0        0        0        0        0        0        0        0                                                datetime        290
        DDL        Informix        DATETIME DAY TO MINUTE        0        0        0        0        0        0        0        0                                                datetime        291
        DDL        Informix        DATETIME DAY TO SECOND        0        0        0        0        0        0        0        0                                                datetime        292
        DDL        Informix        DATETIME DAY TO FRACTION        1        5        0        0        3        0        0        0                                                datetime        293
        DDL        Informix        DATETIME HOUR TO HOUR        0        0        0        0        0        0        0        0                                                datetime        294
        DDL        Informix        DATETIME HOUR TO FRACTION        1        5        0        0        3        0        0        0                                                datetime        295
        DDL        Informix        DATETIME HOUR TO SECOND        0        0        0        0        0        0        0        0                                                datetime        296
        DDL        Informix        DATETIME MINUTE TO MINUTE        0        0        0        0        0        0        0        0                                                datetime        297
        DDL        Informix        DATETIME MINUTE TO SECOND        0        0        0        0        0        0        0        0                                                datetime        298
        DDL        Informix        DATETIME MINUTE TO FRACTION        1        5        0        0        3        0        0        0                                                datetime        299
        DDL        Informix        DATETIME SECOND TO SECOND        0        0        0        0        0        0        0        0                                                datetime        300
        DDL        Informix        DATETIME SECOND TO FRACTION        1        5        0        0        3        0        0        0                                                datetime        301
        DDL        Informix        DATETIME FRACTION TO FRACTION        1        5        0        0        3        0        0        0                                                datetime        302
        DDL        Informix        BOOLEAN        0        0        0        0        0        0        0        0                                                boolean        303
        DDL        Informix        CHAR        1        32767        0        0        10        0        0        0                                                char        304
        DDL        Informix        CHARACTER        1        32767        0        0        10        0        0        0                                                char        305
        DDL        Informix        NCHAR        1        32767        0        0        50        0        0        0                                                nchar        306
        DDL        Informix        CHARACTER...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here