Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions dynamicsax2012-msdn/overriding-a-method.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,19 @@ public class Attribute

    int objectVariable;

}

void methodAtt()
    void methodAtt()

{
    {

    //Some statements
        // Some statements

    }

}



// Subclass: ColorAttribute

public class ColorAttribute extends Attribute
Expand All @@ -41,13 +44,14 @@ public class ColorAttribute extends Attribute

    int addedObjectVariable;

}

void methodAtt()
    void methodAtt()

{
    {

    //Some statements
        // Some statements

    }

}

Expand Down