44
Use of Development IDEs in Enterprise Application Development Enterprise Application Development (EAD)

EAD Lecture - Use of Development IDEs in Enterprise Application Development

Embed Size (px)

DESCRIPTION

m,m.m.m.

Citation preview

  • Use of Development IDEs in Enterprise Application DevelopmentEnterprise Application Development (EAD)

    Use of Development IDEs in Enterprise Application Development

    AgendaCreating ProjectsAdding new classesCustomizing the text editorRegions, TODOs, Comments and SnippetsGenerating documentationRefactoring supportSearching with Regular Expressions Synchronizing with Code RepositoryCustom Project Templates/Item Templates

    Use of Development IDEs in Enterprise Application Development

    Creating a Visual Studio Project

    Use of Development IDEs in Enterprise Application Development

    Design your System

    Use of Development IDEs in Enterprise Application Development

    Adding New Classes

    Use of Development IDEs in Enterprise Application Development

    Adding Class Members

    Use of Development IDEs in Enterprise Application Development

    Simple Class Diagram

    Use of Development IDEs in Enterprise Application Development

    Analyzing the Generated Code

    Use of Development IDEs in Enterprise Application Development

    Customize the Text Editor

    Use of Development IDEs in Enterprise Application Development

    #regions

    Use of Development IDEs in Enterprise Application Development

    TODOs (Tokens) (1/2)

    Use of Development IDEs in Enterprise Application Development

    TODOs (Tokens) (2/2)Press Ctrl+W, T to retrieve all TODOs

    Use of Development IDEs in Enterprise Application Development

    CommentsSingle Line CommentMulti Line CommentDocumentation Comment

    Use of Development IDEs in Enterprise Application Development

    Documentation Comments

    Use of Development IDEs in Enterprise Application Development

    Generating DocumentationUsing an utility tool called Sandcastle

    Refer the following link for more information http://www.microsoft.com/downloads/details.aspx?FamilyID=E82EA71D-DA89-42EE-A715-696E3A4873B2&displaylang=en

    Use of Development IDEs in Enterprise Application Development

    Snippets

    Use of Development IDEs in Enterprise Application Development

    Creating Custom SnippetsRefer the following link to find more information on creating custom code snippetshttp://msdn.microsoft.com/en-us/library/ms165393.aspx

    Use of Development IDEs in Enterprise Application Development

    Format DocumentPress Ctrl+E, D

    Use of Development IDEs in Enterprise Application Development

    Refactoring Support

    Use of Development IDEs in Enterprise Application Development

    Encapsulate Field

    Use of Development IDEs in Enterprise Application Development

    Rename (1/1)

    Use of Development IDEs in Enterprise Application Development

    Rename (2/2)

    Use of Development IDEs in Enterprise Application Development

    Extract Method

    Use of Development IDEs in Enterprise Application Development

    Extract Interface (1/2)

    Use of Development IDEs in Enterprise Application Development

    Extract Interface (2/2)

    Use of Development IDEs in Enterprise Application Development

    Promote Local Variable To Parameter

    Use of Development IDEs in Enterprise Application Development

    Remove Parameters & Re Order Parameters

    Use of Development IDEs in Enterprise Application Development

    Remove Parameters

    Use of Development IDEs in Enterprise Application Development

    Re Order Parameters (1/2)

    Use of Development IDEs in Enterprise Application Development

    Re Order Parameters (2/2)

    Use of Development IDEs in Enterprise Application Development

    Implement Abstract Class

    Use of Development IDEs in Enterprise Application Development

    Implement Interface (1/2)

    Use of Development IDEs in Enterprise Application Development

    Implement Interface (2/2)

    Use of Development IDEs in Enterprise Application Development

    Debugging Support

    Use of Development IDEs in Enterprise Application Development

    Searching with Regular Expressions (1/2)Original Statement return data["COVERAGE_ELECT"];

    New Statement return ProcessDataString("COVERAGE_ELECT");

    Search Stringreturn data\[{["A-Z_]*}\] \ - Matches the character that follows the backslash (\) as a literal{} - Matches text tagged with the enclosed expression [A-Z_ ] - Matches any one of the characters within the [] * - Matches zero or more occurrences of the preceding expression,

    Replace Stringreturn ProcessDataString(\1)

    Use of Development IDEs in Enterprise Application Development

    Searching with Regular Expressions (2/2)

    Use of Development IDEs in Enterprise Application Development

    Synchronizing with Code Repository (1/3)Developer ADeveloper BDeveloper CCheck-inCheck-outCheck-inCheck-outCheck-outCheck-inSri LankaSwedenNorway

    Use of Development IDEs in Enterprise Application Development

    Synchronizing with Code Repository (2/3)

    Use of Development IDEs in Enterprise Application Development

    Synchronizing with Code Repository (3/3)

    Use of Development IDEs in Enterprise Application Development

    Custom Project Templates

    Use of Development IDEs in Enterprise Application Development

    Custom Item Templates

    Use of Development IDEs in Enterprise Application Development

    Custom Project/Item TemplatesRefer the following links for more informationhttp://msdn.microsoft.com/en-us/library/6db0hwky(VS.80).aspxhttp://msdn.microsoft.com/en-us/magazine/cc188697.aspx

    Use of Development IDEs in Enterprise Application Development

    Questions?

  • 2008 IFS AB. All rights reserved.End

    IFS Training IFS Applications 2003

    IFS Training IFS Applications 2003

    IFS Training IFS Applications 2003

    IFS Training IFS Applications 2003

    Snippet is a programming term for a small region of re-usable source code or text IFS Training IFS Applications 2003

    IFS Training IFS Applications 2003